| |
|
| java.lang.Object org.jfree.util.AbstractObjectList org.jfree.util.PaintList
Constructor Summary | |
public | PaintList() Creates a new list. |
Method Summary | |
public boolean | equals(Object obj) Tests the list for equality with another object (typically also a list).
Parameters: obj - the other object (null permitted). | public Paint | getPaint(int index) Returns a
Paint object from the list.
Parameters: index - the index (zero-based). | public int | hashCode() Returns a hash code value for the object. | public void | setPaint(int index, Paint paint) Sets the
Paint for an item in the list. |
PaintList | public PaintList()(Code) | | Creates a new list.
|
equals | public boolean equals(Object obj)(Code) | | Tests the list for equality with another object (typically also a list).
Parameters: obj - the other object (null permitted). A boolean. |
getPaint | public Paint getPaint(int index)(Code) | | Returns a
Paint 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 |
setPaint | public void setPaint(int index, Paint paint)(Code) | | Sets the
Paint for an item in the list. The list is expanded if necessary.
Parameters: index - the index (zero-based). Parameters: paint - the Paint. |
Fields inherited from org.jfree.util.AbstractObjectList | final public static int DEFAULT_INITIAL_CAPACITY(Code)(Java Doc)
|
|
|
|