public class StrokeList extends AbstractObjectList
Stroke objects.DEFAULT_INITIAL_CAPACITY| Constructor and Description |
|---|
StrokeList()
Creates a new list.
|
| Modifier and Type | Method and 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.Stroke |
getStroke(int index)
Returns a
Stroke object from the list. |
int |
hashCode()
Returns a hash code value for the object.
|
void |
setStroke(int index,
java.awt.Stroke stroke)
Sets the
Stroke for an item in the list. |
public java.awt.Stroke getStroke(int index)
Stroke object from the list.index - the index (zero-based).public void setStroke(int index,
java.awt.Stroke stroke)
Stroke for an item in the list. The list is expanded if necessary.index - the index (zero-based).stroke - the Stroke.public java.lang.Object clone()
throws java.lang.CloneNotSupportedException
clone in class AbstractObjectListjava.lang.CloneNotSupportedException - if an item in the list cannot be cloned.public boolean equals(java.lang.Object o)
equals in class AbstractObjectListo - the other object.public int hashCode()
hashCode in class AbstractObjectList