Package org.jfree.chart.util
Class ShapeList
java.lang.Object
org.jfree.chart.util.AbstractObjectList
org.jfree.chart.util.ShapeList
- All Implemented Interfaces:
Serializable,Cloneable
A table of
Shape objects.- See Also:
-
Field Summary
Fields inherited from class org.jfree.chart.util.AbstractObjectList
DEFAULT_INITIAL_CAPACITY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()Returns an independent copy of the list.booleanTests the list for equality with another object (typically also a list).getShape(int index) Returns aShapeobject from the list.inthashCode()Returns a hash code value for the object.voidSets theShapefor an item in the list.
-
Constructor Details
-
ShapeList
public ShapeList()Creates a new list.
-
-
Method Details
-
getShape
Returns aShapeobject from the list.- Parameters:
index- the index (zero-based).- Returns:
- The object.
-
setShape
Sets theShapefor an item in the list. The list is expanded if necessary.- Parameters:
index- the index (zero-based).shape- theShape.
-
clone
Returns an independent copy of the list.- Overrides:
clonein classAbstractObjectList- Returns:
- A clone.
- Throws:
CloneNotSupportedException- if an item in the list does not support cloning.
-
equals
Tests the list for equality with another object (typically also a list).- Overrides:
equalsin classAbstractObjectList- Parameters:
obj- the other object (nullpermitted).- Returns:
- A boolean.
-
hashCode
Returns a hash code value for the object.- Overrides:
hashCodein classAbstractObjectList- Returns:
- the hashcode
-