| |
|
| java.lang.Object org.jfree.util.AbstractObjectList org.jfree.util.ShapeList
Constructor Summary | |
public | ShapeList() Creates a new list. |
Method Summary | |
public Object | clone() Returns an independent copy of the list. | public boolean | equals(Object o) Tests the list for equality with another object (typically also a list).
Parameters: o - the other object. | public Shape | getShape(int index) Returns a
Shape object from the list.
Parameters: index - the index (zero-based). | public int | hashCode() Returns a hash code value for the object. | public void | setShape(int index, Shape shape) Sets the
Shape for an item in the list. |
ShapeList | public ShapeList()(Code) | | Creates a new list.
|
equals | public boolean equals(Object o)(Code) | | Tests the list for equality with another object (typically also a list).
Parameters: o - the other object. A boolean. |
getShape | public Shape getShape(int index)(Code) | | Returns a
Shape object from the list.
Parameters: index - the index (zero-based). The object. |
hashCode | public int hashCode()(Code) | | Returns a hash code value for the object.
the hashcode |
setShape | public void setShape(int index, Shape shape)(Code) | | Sets the
Shape for an item in the list. The list is expanded if necessary.
Parameters: index - the index (zero-based). Parameters: shape - the Shape. |
Fields inherited from org.jfree.util.AbstractObjectList | final public static int DEFAULT_INITIAL_CAPACITY(Code)(Java Doc)
|
|
|
|