Uses of Interface
net.sf.latexdraw.glib.models.interfaces.IArrow

Packages that use IArrow
net.sf.latexdraw.generators.svg   
net.sf.latexdraw.glib.models.impl   
net.sf.latexdraw.glib.models.interfaces   
net.sf.latexdraw.glib.views.Java2D.impl   
net.sf.latexdraw.glib.views.pst   
 

Uses of IArrow in net.sf.latexdraw.generators.svg
 

Fields in net.sf.latexdraw.generators.svg declared as IArrow
protected  IArrow LArrowSVGGenerator.arrow
          The arrowhead generated or used to generate the SVG-arrow.
 

Methods in net.sf.latexdraw.generators.svg with parameters of type IArrow
protected  void LShapeSVGGenerator.homogeniseArrowFrom(IArrow source, IArrow target)
          Copies the parameters of the first arrow to the second arrow (only the parameters of the current style are copied).
 void LShapeSVGGenerator.homogeniseArrows(IArrow ah1, IArrow ah2)
          When the arrows are read from an SVG document, we need to set the parameters of the first arrow to the second arrow and vise et versa; because the arrows of a shape share the same parameters.
protected  void LShapeSVGGenerator.setSVGArrow(IArrow ah, java.lang.String arrowID, SVGElement elt)
          Sets the given arrow head using the SVG arrow with the ID arrowID
 

Constructors in net.sf.latexdraw.generators.svg with parameters of type IArrow
LArrowSVGGenerator(IArrow arr)
          Creates an SVG arrow generator.
 

Uses of IArrow in net.sf.latexdraw.glib.models.impl
 

Classes in net.sf.latexdraw.glib.models.impl that implement IArrow
(package private)  class LArrow
          Defines a model of an arrow.
 

Fields in net.sf.latexdraw.glib.models.impl with type parameters of type IArrow
protected  java.util.List<IArrow> LShape.arrows
          The arrow of the shape, may be null.
 

Methods in net.sf.latexdraw.glib.models.impl that return IArrow
 IArrow LShapeFactory.createArrow(IArrow arrow, IShape owner)
           
 IArrow LShapeFactory.createArrow(IShape owner)
           
 IArrow LGroup.getArrowAt(int position)
           
 IArrow LShape.getArrowAt(int position)
           
 

Methods in net.sf.latexdraw.glib.models.impl that return types with arguments of type IArrow
 java.util.List<IArrow> LGroup.getArrows()
           
 java.util.List<IArrow> LShape.getArrows()
           
 

Methods in net.sf.latexdraw.glib.models.impl with parameters of type IArrow
 void LArrow.copy(IArrow model)
           
 IArrow LShapeFactory.createArrow(IArrow arrow, IShape owner)
           
 ILine LAxes.getArrowLine(IArrow arrow)
           
 ILine LBezierCurve.getArrowLine(IArrow arrow)
           
 ILine LGroup.getArrowLine(IArrow arrow)
           
 ILine LPolyline.getArrowLine(IArrow arrow)
           
 ILine LShape.getArrowLine(IArrow arrow)
           
 

Constructors in net.sf.latexdraw.glib.models.impl with parameters of type IArrow
LArrow(IArrow arrow, IShape owner)
          Creates an arrow from an other arrow.
 

Uses of IArrow in net.sf.latexdraw.glib.models.interfaces
 

Methods in net.sf.latexdraw.glib.models.interfaces that return IArrow
 IArrow IShapeFactory.createArrow(IArrow arrow, IShape owner)
          Creates an arrow from an other arrow.
 IArrow IShapeFactory.createArrow(IShape owner)
          Creates an arrow.
 IArrow IShape.getArrowAt(int position)
           
 

Methods in net.sf.latexdraw.glib.models.interfaces that return types with arguments of type IArrow
 java.util.List<IArrow> IShape.getArrows()
           
 

Methods in net.sf.latexdraw.glib.models.interfaces with parameters of type IArrow
 void IArrow.copy(IArrow model)
          Copies the parameters of the given arrow to the current arrow.
 IArrow IShapeFactory.createArrow(IArrow arrow, IShape owner)
          Creates an arrow from an other arrow.
 ILine IShape.getArrowLine(IArrow arrow)
           
 

Uses of IArrow in net.sf.latexdraw.glib.views.Java2D.impl
 

Fields in net.sf.latexdraw.glib.views.Java2D.impl declared as IArrow
protected  IArrow LArrowView.model
          The arrow model to view.
 

Constructors in net.sf.latexdraw.glib.views.Java2D.impl with parameters of type IArrow
LArrowView(IArrow model)
          Creates the view of the arrow.
 

Uses of IArrow in net.sf.latexdraw.glib.views.pst
 

Methods in net.sf.latexdraw.glib.views.pst with parameters of type IArrow
private  java.lang.StringBuilder PSTShapeView.getArrowParametersCode(IArrow arrow)