public class ShapeList extends AbstractObjectList
Shape objects.DEFAULT_INITIAL_CAPACITY| Constructor | Description |
|---|---|
ShapeList() |
Creates a new list.
|
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.Object |
clone() |
Returns an independent copy of the list.
|
boolean |
equals(java.lang.Object o) |
Tests the list for equality with another object (typically also a list).
|
java.awt.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,
java.awt.Shape shape) |
Sets the
Shape for an item in the list. |
public ShapeList()
public java.awt.Shape getShape(int index)
Shape object from the list.index - the index (zero-based).public void setShape(int index, java.awt.Shape shape)
Shape for an item in the list. The list is expanded if necessary.index - the index (zero-based).shape - the Shape.public java.lang.Object clone() throws java.lang.CloneNotSupportedException
clone in class AbstractObjectListjava.lang.CloneNotSupportedException - if an item in the list does not support cloning.public boolean equals(java.lang.Object o)
equals in class AbstractObjectListo - the other object.public int hashCode()
hashCode in class AbstractObjectList