java.lang.Object
org.jfree.chart.entity.ChartEntity
org.jfree.chart.entity.PlotEntity
- All Implemented Interfaces:
Serializable
,Cloneable
,PublicCloneable
A class that captures information about a plot.
- See Also:
-
Constructor Summary
ConstructorDescriptionPlotEntity
(Shape area, Plot plot) Creates a new plot entity.PlotEntity
(Shape area, Plot plot, String toolTipText) Creates a new plot entity.PlotEntity
(Shape area, Plot plot, String toolTipText, String urlText) Creates a new plot entity. -
Method Summary
Modifier and TypeMethodDescriptionclone()
Returns a clone of the entity.boolean
Tests the entity for equality with an arbitrary object.getPlot()
Returns the plot that occupies the entity area.int
hashCode()
Returns a hash code for this instance.toString()
Returns a string representation of the plot entity, useful for debugging.Methods inherited from class org.jfree.chart.entity.ChartEntity
getArea, getImageMapAreaTag, getShapeCoords, getShapeType, getToolTipText, getURLText, setArea, setToolTipText, setURLText
-
Constructor Details
-
PlotEntity
Creates a new plot entity.- Parameters:
area
- the area (null
not permitted).plot
- the plot (null
not permitted).
-
PlotEntity
Creates a new plot entity.- Parameters:
area
- the area (null
not permitted).plot
- the plot (null
not permitted).toolTipText
- the tool tip text (null
permitted).
-
PlotEntity
Creates a new plot entity.- Parameters:
area
- the area (null
not permitted).plot
- the plot (null
not permitted).toolTipText
- the tool tip text (null
permitted).urlText
- the URL text for HTML image maps (null
permitted).
-
-
Method Details
-
getPlot
Returns the plot that occupies the entity area.- Returns:
- The plot (never
null
).
-
toString
Returns a string representation of the plot entity, useful for debugging.- Overrides:
toString
in classChartEntity
- Returns:
- A string.
-
equals
Tests the entity for equality with an arbitrary object.- Overrides:
equals
in classChartEntity
- Parameters:
obj
- the object to test against (null
permitted).- Returns:
- A boolean.
-
hashCode
public int hashCode()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 entity.
-