org.jfree.util
Class ShapeList
- Cloneable, Serializable
A table of Shape objects.
Object | clone()- Returns an independent copy of the list.
|
boolean | equals(Object o)- Tests the list for equality with another object (typically also a list).
|
Shape | getShape(int index)- Returns a
Shape object from the list.
|
int | hashCode()- Returns a hash code value for the object.
|
void | setShape(int index, Shape shape)- Sets the
Shape for an item in the list.
|
ShapeList
public ShapeList()
Creates a new list.
getShape
public Shape getShape(int index)
Returns a Shape object from the list.
index - the index (zero-based).
setShape
public void setShape(int index,
Shape shape) Sets the Shape for an item in the list. The list is expanded if necessary.
index - the index (zero-based).shape - the Shape.