org.jfree.chart
public class LegendItemCollection extends Object implements Cloneable, Serializable
Constructor Summary | |
---|---|
LegendItemCollection()
Constructs a new legend item collection, initially empty. |
Method Summary | |
---|---|
void | add(LegendItem item)
Adds a legend item to the collection.
|
void | addAll(LegendItemCollection collection)
Adds the legend items from another collection to this collection.
|
Object | clone()
Returns a clone of the collection.
|
boolean | equals(Object obj)
Tests this collection for equality with an arbitrary object.
|
LegendItem | get(int index)
Returns a legend item from the collection.
|
int | getItemCount()
Returns the number of legend items in the collection.
|
Iterator | iterator()
Returns an iterator that provides access to all the legend items.
|
Parameters: item the item to add.
Parameters: collection the other collection.
Returns: A clone.
Throws: CloneNotSupportedException if an item in the collection is not cloneable.
Parameters: obj the object (null
permitted).
Returns: A boolean.
Parameters: index the legend item index (zero-based).
Returns: The legend item.
Returns: The item count.
Returns: An iterator.