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

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

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

Constructors in net.sf.latexdraw.generators.svg with parameters of type ISquare
LSquareSVGGenerator(ISquare square)
          Creates an SVG generator for squares.
 

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

Classes in net.sf.latexdraw.glib.models.impl that implement ISquare
(package private)  class LSquare
          Defines a model of a square.
 

Methods in net.sf.latexdraw.glib.models.impl that return ISquare
 ISquare LShapeFactory.createSquare(boolean isUniqueID)
           
 ISquare LShapeFactory.createSquare(IPoint pos, double width, boolean isUniqueID)
           
 ISquare LSquare.duplicate()
           
 

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

Methods in net.sf.latexdraw.glib.models.interfaces that return ISquare
 ISquare IShapeFactory.createSquare(boolean uniqueID)
          Creates a square at position (0,0) which width equals 10.
 ISquare IShapeFactory.createSquare(IPoint pos, double width, boolean uniqueID)
          Creates a square.
 ISquare ISquare.duplicate()
           
 

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

Constructors in net.sf.latexdraw.glib.views.Java2D.impl with parameters of type ISquare
LSquareView(ISquare model)
          Creates an initialises the Java view of a LSquare.