Uses of Class
com.arctorus.documents.Shape

Packages that use Shape
com.arctorus.documents   
 

Uses of Shape in com.arctorus.documents
 

Subclasses of Shape in com.arctorus.documents
 class Picture
          Picture on a document page.
 

Methods in com.arctorus.documents that return Shape
static Shape ShapeFactory.create(ShapeType shapeType)
          Create and return new shape with the specified type.
static Shape Shape.createEllipse()
          Create and return new ellipse shape.
static Shape Shape.createLine()
          Create and return new line shape.
static Shape Shape.createRectangle()
          Create and return new rectangle shape.
 

Methods in com.arctorus.documents that return types with arguments of type Shape
 java.util.List<Shape> Page.getShapes()
          Get list of all shapes on a page.
 

Methods in com.arctorus.documents with parameters of type Shape
 void Page.addShape(Shape shape)
          Add new shape to a page.