Package org.jfree.chart.entity
Class LegendItemEntity
java.lang.Object
org.jfree.chart.entity.ChartEntity
org.jfree.chart.entity.LegendItemEntity
- All Implemented Interfaces:
Serializable
,Cloneable
,PublicCloneable
An entity that represents an item within a legend.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Ensures symmetry between super/subclass implementations of equals.clone()
Returns a clone of the entity.boolean
Tests this object for equality with an arbitrary object.Returns a reference to the dataset that this legend item is derived from.Returns the series key that identifies the legend item.int
hashCode()
Returns a hash code for this instance.void
setDataset
(Dataset dataset) Sets a reference to the dataset that this legend item is derived from.void
setSeriesKey
(Comparable key) Sets the key for the series.toString()
Returns a string representing this object (useful for debugging purposes).Methods inherited from class org.jfree.chart.entity.ChartEntity
getArea, getImageMapAreaTag, getShapeCoords, getShapeType, getToolTipText, getURLText, setArea, setToolTipText, setURLText
-
Constructor Details
-
LegendItemEntity
Creates a legend item entity.- Parameters:
area
- the area.
-
-
Method Details
-
getDataset
Returns a reference to the dataset that this legend item is derived from.- Returns:
- The dataset.
- See Also:
-
setDataset
Sets a reference to the dataset that this legend item is derived from.- Parameters:
dataset
- the dataset.
-
getSeriesKey
Returns the series key that identifies the legend item.- Returns:
- The series key.
- See Also:
-
setSeriesKey
Sets the key for the series.- Parameters:
key
- the key.- See Also:
-
equals
Tests this object for equality with an arbitrary object.- Overrides:
equals
in classChartEntity
- Parameters:
obj
- the object (null
permitted).- Returns:
- A boolean.
-
canEqual
Ensures symmetry between super/subclass implementations of equals. For more detail, see http://jqno.nl/equalsverifier/manual/inheritance.- Overrides:
canEqual
in classChartEntity
- Parameters:
other
- Object- Returns:
- true ONLY if the parameter is THIS class type
-
hashCode
Description copied from class:ChartEntity
Returns a hash code for this instance.- Overrides:
hashCode
in classChartEntity
- Returns:
- A hash code.
-
clone
Returns a clone of the entity.- Specified by:
clone
in interfacePublicCloneable
- Overrides:
clone
in classChartEntity
- Returns:
- A clone.
- Throws:
CloneNotSupportedException
- if there is a problem cloning the object.
-
toString
Returns a string representing this object (useful for debugging purposes).- Overrides:
toString
in classChartEntity
- Returns:
- A string (never
null
).
-