Uses of Class
bb.gui.GraphicsLabel

Packages that use GraphicsLabel
bb.gui Provides classes and interfaces for GUI applications. 
 

Uses of GraphicsLabel in bb.gui
 

Methods in bb.gui that return GraphicsLabel
private static GraphicsLabel GraphicsLabel.make(String text, Point2D centerPoint, Point2D anchorPoint, Graphics2D g2)
          Fundamental factory method, called by many of the others.
static GraphicsLabel GraphicsLabel.makeAbove(String text, Point2D anchorPoint, double margin, Graphics2D g2)
          Convenience factory method which returns a new GraphicsLabel instance which is above anchorPoint.
static GraphicsLabel GraphicsLabel.makeBelow(String text, Point2D anchorPoint, double margin, Graphics2D g2)
          Convenience factory method which returns a new GraphicsLabel instance which is below anchorPoint.
static GraphicsLabel GraphicsLabel.makeCenter(String text, Point2D anchorPoint, Graphics2D g2)
          Convenience factory method which returns a new GraphicsLabel instance which is centered on anchorPoint.
static GraphicsLabel GraphicsLabel.makeLeft(String text, Point2D anchorPoint, double margin, Graphics2D g2)
          Convenience factory method which returns a new GraphicsLabel instance to the left of anchorPoint.
static GraphicsLabel GraphicsLabel.makeOffsetCenter(String text, Point2D anchorPoint, double dx, double dy, Graphics2D g2)
          Convenience factory method which returns a new GraphicsLabel instance whose center is offset from anchorPoint.
static GraphicsLabel GraphicsLabel.makeOffsetCorner(String text, Point2D anchorPoint, double dx, double dy, Graphics2D g2)
          Convenience factory method which returns a new GraphicsLabel instance whose corner is offset from anchorPoint.
static GraphicsLabel GraphicsLabel.makeRight(String text, GraphicsLabel labelExisting, double margin, Graphics2D g2)
          Convenience factory method which returns a new GraphicsLabel instance to the right of labelExisting.
static GraphicsLabel GraphicsLabel.makeRight(String text, Point2D anchorPoint, double margin, Graphics2D g2)
          Convenience factory method which returns a new GraphicsLabel instance to the right of anchorPoint.
 GraphicsLabel GraphicsLabel.shift(double dx, double dy)
          Returns shift(getText(), dx, dy).
 GraphicsLabel GraphicsLabel.shift(String text, double dx, double dy)
          Returns a new GraphicsLabel which is the same as this instance except that the text field is changed to the text param and the referencePoint field is shifted by the deltas.
 

Methods in bb.gui with parameters of type GraphicsLabel
static GraphicsLabel GraphicsLabel.makeRight(String text, GraphicsLabel labelExisting, double margin, Graphics2D g2)
          Convenience factory method which returns a new GraphicsLabel instance to the right of labelExisting.