Uses of Class
jdraw.graphicalobjects.GraphicalObject

Packages that use GraphicalObject
jdraw Root package of JDraw
jdraw.graphicalobjects Package containing all the graphical objects managed by JDraw
jdraw.ui Package containing all components and frames of the JDraw user interface. 
 

Uses of GraphicalObject in jdraw
 

Fields in jdraw declared as GraphicalObject
private static GraphicalObject[] JDraw.dummy_graphical_objects
          Some dummy graphical objects.
 

Methods in jdraw that return GraphicalObject
 GraphicalObject GraphicalObjectManager.getClosestObject(Point ptPoint)
          Returns the closest object to the specified point, with respect to distance thresold.
 

Methods in jdraw with parameters of type GraphicalObject
 void GraphicalObjectManager.add(GraphicalObject grobjObject)
          Adds the specified graphical object to the list of managed objects.
 boolean GraphicalObjectManager.remove(GraphicalObject grobjObject)
          Removes the specified graphical object to the list of managed objects.
 

Constructors in jdraw with parameters of type GraphicalObject
GraphicalObjectManager(GraphicalObject[] graphical_objects)
          Creates a new GraphicalObjectManager object, with the specified GraphicalObjects.
 

Uses of GraphicalObject in jdraw.graphicalobjects
 

Subclasses of GraphicalObject in jdraw.graphicalobjects
 class Ellipse
          A graphical ellipse.
 class Point
          A graphical point.
 class Rectangle
          A graphical rectangle.
 class Segment
          A graphical segment.
 class SizedGraphicalObject
          A graphical object with width and height.
 class TextArea
          A text area.
 

Uses of GraphicalObject in jdraw.ui
 

Fields in jdraw.ui declared as GraphicalObject
private  GraphicalObject GraphicalObjectProperties.grobjGraphicalObject
          The graphical objects managed.
private  GraphicalObject GraphicalObjectCanvas.gobjLastSelectedObject
          The last selected graphical object.
 

Constructors in jdraw.ui with parameters of type GraphicalObject
GraphicalObjectProperties(Frame frmOwner, GraphicalObject grobjGraphicalObject)
          Creates a new GraphicalObjectProperties object.