public class ShapeList extends AbstractObjectList
Shape
objects.DEFAULT_INITIAL_CAPACITY
Constructor and Description |
---|
ShapeList()
Creates a new list.
|
Modifier and Type | Method and Description |
---|---|
Object |
clone()
Returns an independent copy of the list.
|
boolean |
equals(Object obj)
Tests the list for equality with another object (typically also a list).
|
Shape |
getShape(int index)
Returns a
Shape object from the list. |
int |
hashCode()
Returns a hash code value for the object.
|
void |
setShape(int index,
Shape shape)
Sets the
Shape for an item in the list. |
public Shape getShape(int index)
Shape
object from the list.index
- the index (zero-based).public void setShape(int index, Shape shape)
Shape
for an item in the list. The list is expanded
if necessary.index
- the index (zero-based).shape
- the Shape
.public Object clone() throws CloneNotSupportedException
clone
in class AbstractObjectList
CloneNotSupportedException
- if an item in the list does not
support cloning.public boolean equals(Object obj)
equals
in class AbstractObjectList
obj
- the other object (null
permitted).public int hashCode()
hashCode
in class AbstractObjectList
Copyright © 2001–2017 JFree.org. All rights reserved.