| |
|
| java.lang.Object org.jfree.util.AbstractObjectList org.jfree.util.StrokeList
Constructor Summary | |
public | StrokeList() 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 Stroke | getStroke(int index) Returns a
Stroke object from the list.
Parameters: index - the index (zero-based). | public int | hashCode() Returns a hash code value for the object. | public void | setStroke(int index, Stroke stroke) Sets the
Stroke for an item in the list. |
StrokeList | public StrokeList()(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. |
getStroke | public Stroke getStroke(int index)(Code) | | Returns a
Stroke 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 |
setStroke | public void setStroke(int index, Stroke stroke)(Code) | | Sets the
Stroke for an item in the list. The list is expanded if necessary.
Parameters: index - the index (zero-based). Parameters: stroke - the Stroke. |
Fields inherited from org.jfree.util.AbstractObjectList | final public static int DEFAULT_INITIAL_CAPACITY(Code)(Java Doc)
|
|
|
|