Uses of Class
jimm.datavision.Point

Packages that use Point
jimm.datavision Provides the classes and interfaces that make up a DataVision report. 
jimm.datavision.gui.cmd Provides the classes and interfaces that make up the undo/redo command structure. 
jimm.datavision.layout.pdf The PDF layout engine implementation. 
 

Uses of Point in jimm.datavision
 

Fields in jimm.datavision declared as Point
protected  Point[] Line.points
           
 

Methods in jimm.datavision that return Point
 Point Line.getPoint(int index)
          Returns one of the two end points of the line.
 

Methods in jimm.datavision with parameters of type Point
 double Point.distanceTo(Point p)
          Returns the distance from this point to another.
 void Line.setPoint(Point newPoint, int index)
          Sets one of the two end points.
 void Point.translate(Point p)
          Translates this point by the coordinates of another.
 

Constructors in jimm.datavision with parameters of type Point
Line(Report report, Section section, double thickness, java.awt.Color color, boolean visible, Point p0, Point p1)
          Constructor.
Point(Point p)
          Constructor.
 

Uses of Point in jimm.datavision.gui.cmd
 

Fields in jimm.datavision.gui.cmd declared as Point
protected  Point InsertFieldCommand.insertLoc
           
 

Constructors in jimm.datavision.gui.cmd with parameters of type Point
InsertFieldCommand(SectionWidget sw, java.lang.String fieldType, Point insertLoc)
           
 

Uses of Point in jimm.datavision.layout.pdf
 

Methods in jimm.datavision.layout.pdf that return Point
protected  Point PDFLE.bottomLeftOfField(Field f, double size, com.lowagie.text.pdf.BaseFont baseFont)
           
 

Methods in jimm.datavision.layout.pdf with parameters of type Point
protected  void PDFLE.translateToPDFCoords(Point p)