Uses of Class
net.sf.jaxodraw.util.graphics.JaxoGraphics2D

Packages that use JaxoGraphics2D
net.sf.jaxodraw.graph Graph related classes. 
net.sf.jaxodraw.gui.handle Handles for JaxoObject. 
net.sf.jaxodraw.object Collection of objects that can be drawn by JaxoDraw. 
net.sf.jaxodraw.object.arc Arc objects. 
net.sf.jaxodraw.object.bezier Bezier objects. 
net.sf.jaxodraw.object.fill Fill objects, ie objects that have a fill color. 
net.sf.jaxodraw.object.group Group objects. 
net.sf.jaxodraw.object.line Line objects. 
net.sf.jaxodraw.object.loop Loop objects. 
net.sf.jaxodraw.object.text Text objects. 
net.sf.jaxodraw.object.vertex Vertex objects. 
 

Uses of JaxoGraphics2D in net.sf.jaxodraw.graph
 

Methods in net.sf.jaxodraw.graph with parameters of type JaxoGraphics2D
 void JaxoGraph.paint(JaxoGraphics2D g)
          Paint all objects to 'g'.
 void JaxoGraph.paintClipped(JaxoGraphics2D g)
          Paint all objects to 'g' if they intersect the clip bounds.
 void JaxoGraph.paintHandles(JaxoGraphics2D g2, JaxoHandle h, int editMode)
          Paints handles on all objects in this graph.
 

Uses of JaxoGraphics2D in net.sf.jaxodraw.gui.handle
 

Methods in net.sf.jaxodraw.gui.handle with parameters of type JaxoGraphics2D
 void AbstractJaxoHandle.paint(JaxoGraphics2D g2, int x, int y)
          Paints an unmarked handle at (x, y).
 void AbstractJaxoHandle.paint(JaxoGraphics2D g2, int x, int y, boolean marked)
          Paints a handle at (x, y).
 void AbstractJaxoHandle.paint(JaxoGraphics2D g2, int x, int y, boolean marked, boolean secondary)
          Paint the handle at a given position.
 void JaxoRoundHandle.paint(JaxoGraphics2D g2, int x, int y, boolean marked, Color handleColor)
          Paints the handle to the given graphics context.
 void JaxoDefaultHandle.paint(JaxoGraphics2D g2, int x, int y, boolean marked, Color handleColor)
          Paints the handle to the given graphics context.
abstract  void AbstractJaxoHandle.paint(JaxoGraphics2D g2, int x, int y, boolean marked, Color handleColor)
          Paints the handle to the given graphics context.
 void AbstractJaxoHandle.paintSecondary(JaxoGraphics2D g2, int x, int y)
          Paints an unmarked handle in secondary color at (x, y).
 void AbstractJaxoHandle.paintSecondary(JaxoGraphics2D g2, int x, int y, boolean marked)
          Paints a handle in secondary color at (x, y).
 

Uses of JaxoGraphics2D in net.sf.jaxodraw.object
 

Methods in net.sf.jaxodraw.object with parameters of type JaxoGraphics2D
 void JaxoObjectList.paint(JaxoGraphics2D g)
          Call paint(g) on all elements of JaxoObjects.
abstract  void JaxoObject.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoList.paint(JaxoGraphics2D g)
          Call paint(g) on all elements of JaxoObjects.
 void JaxoHandle.paint(JaxoGraphics2D g2, int x, int y, boolean marked, boolean secondary)
          Paint the handle at a given position.
protected  void JaxoParticleObject.paintArrow(JaxoGraphics2D g2)
          Paints an arrow on this object.
 void JaxoObjectList.paintClipped(JaxoGraphics2D g)
          Call paint on all elements of JaxoObjects if they intersect the current clipping area of the given graphics context.
 void JaxoList.paintClipped(JaxoGraphics2D g)
          Call paint on all elements of JaxoObjects if they intersect the current clipping area of the given graphics context.
 void JaxoObjectList.paintClippedExcept(Collection<? extends E> excludes, JaxoGraphics2D g)
          Call paint on all elements of JaxoObjects that are not contained in 'excludes' and that intersect the current clipping area of the given graphics context.
 void JaxoList.paintClippedExcept(Collection<? extends E> excludes, JaxoGraphics2D g)
          Call paint on all elements of JaxoObjects that are not contained in 'excludes' and that intersect the current clipping area of the given graphics context.
 void JaxoObjectList.paintExcept(Collection<? extends E> excludes, JaxoGraphics2D g)
          Call paint on all elements of JaxoObjects that are not contained in 'excludes'.
 void JaxoList.paintExcept(Collection<? extends E> excludes, JaxoGraphics2D g)
          Call paint on all elements of JaxoObjects that are not contained in 'excludes'.
 void Jaxo3PointObject.paintHandles(JaxoGraphics2D g2, JaxoHandle h, int editMode)
          Paints the handles of this JaxoObject that allow to move/resize/edit it.
 void JaxoExtendedObject.paintHandles(JaxoGraphics2D g2, JaxoHandle h, int editMode)
          Paints the handles of this JaxoObject that allow to move/resize/edit it.
abstract  void JaxoObject.paintHandles(JaxoGraphics2D g2, JaxoHandle h, int editMode)
          Paints the handles of this JaxoObject that allow to move/resize/edit it.
 void JaxoObject.paintVisualAid(JaxoGraphics2D g2)
          Paints a visual aid for the user during dragging (moving or resizing) of this JaxoObject.
 

Uses of JaxoGraphics2D in net.sf.jaxodraw.object.arc
 

Methods in net.sf.jaxodraw.object.arc with parameters of type JaxoGraphics2D
 void JaxoPArc.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoFArc.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoDashArc.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoGlArc.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoArcObject.paintVisualAid(JaxoGraphics2D g2)
          Paints a visual aid for the user during dragging (moving or resizing) of this JaxoObject.
 

Uses of JaxoGraphics2D in net.sf.jaxodraw.object.bezier
 

Methods in net.sf.jaxodraw.object.bezier with parameters of type JaxoGraphics2D
 void JaxoDashBezier.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoFBezier.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoPBezier.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoGlBezier.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoBezierObject.paintHandles(JaxoGraphics2D g2, JaxoHandle h, int editMode)
          Paints the handles of this JaxoObject that allow to move/resize/edit it.
 void JaxoBezierObject.paintVisualAid(JaxoGraphics2D g2)
          Paints a visual aid for the user during dragging (moving or resizing) of this JaxoObject.
 

Uses of JaxoGraphics2D in net.sf.jaxodraw.object.fill
 

Methods in net.sf.jaxodraw.object.fill with parameters of type JaxoGraphics2D
 void JaxoBlob.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoBox.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoBox.paintHandles(JaxoGraphics2D g2, JaxoHandle h, int editMode)
          Paints the handles of this JaxoObject that allow to move/resize/edit it.
 void JaxoBlob.paintVisualAid(JaxoGraphics2D g2)
          Paints a visual aid for the user during dragging (moving or resizing) of this JaxoObject.
 

Uses of JaxoGraphics2D in net.sf.jaxodraw.object.group
 

Methods in net.sf.jaxodraw.object.group with parameters of type JaxoGraphics2D
 void JaxoGroup.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoGroup.paintHandles(JaxoGraphics2D g2, JaxoHandle h, int editMode)
          Paints the handles of this JaxoObject that allow to move/resize/edit it.
 void JaxoGroup.paintVisualAid(JaxoGraphics2D g2)
          Paints a visual aid for the user during dragging (moving or resizing) of this JaxoObject.
 

Uses of JaxoGraphics2D in net.sf.jaxodraw.object.line
 

Methods in net.sf.jaxodraw.object.line with parameters of type JaxoGraphics2D
 void JaxoLineObject.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoLineObject.paintHandles(JaxoGraphics2D g2, JaxoHandle h, int editMode)
          Paints the handles of this JaxoObject that allow to move/resize/edit it.
 

Uses of JaxoGraphics2D in net.sf.jaxodraw.object.loop
 

Methods in net.sf.jaxodraw.object.loop with parameters of type JaxoGraphics2D
 void JaxoDashLoop.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoLoopObject.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoLoopObject.paintVisualAid(JaxoGraphics2D g2)
          Paints a visual aid for the user during dragging (moving or resizing) of this JaxoObject.
 

Uses of JaxoGraphics2D in net.sf.jaxodraw.object.text
 

Methods in net.sf.jaxodraw.object.text with parameters of type JaxoGraphics2D
 void JaxoPSText.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoLatexText.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoTextObject.paintHandles(JaxoGraphics2D g2, JaxoHandle h, int editMode)
          Paints the handles of this JaxoObject that allow to move/resize/edit it.
 

Uses of JaxoGraphics2D in net.sf.jaxodraw.object.vertex
 

Methods in net.sf.jaxodraw.object.vertex with parameters of type JaxoGraphics2D
 void JaxoVertexT4.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoVertexT5.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoVertexT6.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoVertexT3.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoVertexT2.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoVertexT1.paint(JaxoGraphics2D g2)
          The method that paints the JaxoObject.
 void JaxoVertexT4.paintHandles(JaxoGraphics2D g2, JaxoHandle h, int editMode)
          Paints the handles of this JaxoObject that allow to move/resize/edit it.
 void JaxoVertexT2.paintHandles(JaxoGraphics2D g2, JaxoHandle h, int editMode)
          Paints the handles of this JaxoObject that allow to move/resize/edit it.
 void JaxoVertexT5.paintVisualAid(JaxoGraphics2D g2)
          Paints a visual aid for the user during dragging (moving or resizing) of this JaxoObject.
 void JaxoVertex.paintVisualAid(JaxoGraphics2D g2)
          Paints a visual aid for the user during dragging (moving or resizing) of this JaxoObject.
 



Copyright © 2003-2011 The JaxoDraw team. All Rights Reserved.