Package org.jfree.util
Class StrokeList
- java.lang.Object
-
- org.jfree.util.AbstractObjectList
-
- org.jfree.util.StrokeList
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable
public class StrokeList extends AbstractObjectList
A table ofStrokeobjects.- Author:
- David Gilbert
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.jfree.util.AbstractObjectList
DEFAULT_INITIAL_CAPACITY
-
-
Constructor Summary
Constructors Constructor Description StrokeList()Creates a new list.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectclone()Returns an independent copy of the list.booleanequals(java.lang.Object o)Tests the list for equality with another object (typically also a list).java.awt.StrokegetStroke(int index)Returns aStrokeobject from the list.inthashCode()Returns a hash code value for the object.voidsetStroke(int index, java.awt.Stroke stroke)Sets theStrokefor an item in the list.
-
-
-
Constructor Detail
-
StrokeList
public StrokeList()
Creates a new list.
-
-
Method Detail
-
getStroke
public java.awt.Stroke getStroke(int index)
Returns aStrokeobject from the list.- Parameters:
index- the index (zero-based).- Returns:
- The object.
-
setStroke
public void setStroke(int index, java.awt.Stroke stroke)
Sets theStrokefor an item in the list. The list is expanded if necessary.- Parameters:
index- the index (zero-based).stroke- theStroke.
-
clone
public java.lang.Object clone() throws java.lang.CloneNotSupportedException
Returns an independent copy of the list.- Overrides:
clonein classAbstractObjectList- Returns:
- A clone.
- Throws:
java.lang.CloneNotSupportedException- if an item in the list cannot be cloned.
-
equals
public boolean equals(java.lang.Object o)
Tests the list for equality with another object (typically also a list).- Overrides:
equalsin classAbstractObjectList- Parameters:
o- the other object.- Returns:
- A boolean.
-
hashCode
public int hashCode()
Returns a hash code value for the object.- Overrides:
hashCodein classAbstractObjectList- Returns:
- the hashcode
-
-