Package org.jfree.chart.entity
Class XYItemEntity
java.lang.Object
org.jfree.chart.entity.ChartEntity
org.jfree.chart.entity.XYItemEntity
- All Implemented Interfaces:
Serializable
,Cloneable
,PublicCloneable
A chart entity that represents one item within an
XYPlot
.- See Also:
-
Constructor Summary
ConstructorDescriptionXYItemEntity
(Shape area, XYDataset dataset, int series, int item, String toolTipText, String urlText) Creates a new entity. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Ensures symmetry between super/subclass implementations of equals.boolean
Tests the entity for equality with an arbitrary object.Returns the dataset this entity refers to.int
getItem()
Returns the item index.int
Returns the series index.int
hashCode()
Returns a hash code for this instance.void
setDataset
(XYDataset dataset) Sets the dataset this entity refers to.void
setItem
(int item) Sets the item index.void
setSeriesIndex
(int series) Sets the series index.toString()
Returns a string representation of this instance, useful for debugging purposes.Methods inherited from class org.jfree.chart.entity.ChartEntity
clone, getArea, getImageMapAreaTag, getShapeCoords, getShapeType, getToolTipText, getURLText, setArea, setToolTipText, setURLText
-
Constructor Details
-
XYItemEntity
public XYItemEntity(Shape area, XYDataset dataset, int series, int item, String toolTipText, String urlText) Creates a new entity.- Parameters:
area
- the area.dataset
- the dataset.series
- the series (zero-based index).item
- the item (zero-based index).toolTipText
- the tool tip text.urlText
- the URL text for HTML image maps.
-
-
Method Details
-
getDataset
Returns the dataset this entity refers to.- Returns:
- The dataset.
-
setDataset
Sets the dataset this entity refers to.- Parameters:
dataset
- the dataset.
-
getSeriesIndex
Returns the series index.- Returns:
- The series index.
-
setSeriesIndex
Sets the series index.- Parameters:
series
- the series index (zero-based).
-
getItem
Returns the item index.- Returns:
- The item index.
-
setItem
Sets the item index.- Parameters:
item
- the item index (zero-based).
-
equals
Tests the entity 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.
-
toString
Returns a string representation of this instance, useful for debugging purposes.- Overrides:
toString
in classChartEntity
- Returns:
- A string.
-