Package org.jfree.chart.entity
Class JFreeChartEntity
java.lang.Object
org.jfree.chart.entity.ChartEntity
org.jfree.chart.entity.JFreeChartEntity
- All Implemented Interfaces:
Serializable,Cloneable,PublicCloneable
public class JFreeChartEntity extends ChartEntity
A class that captures information about an entire chart.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description JFreeChartEntity(Shape area, JFreeChart chart)Creates a new chart entity.JFreeChartEntity(Shape area, JFreeChart chart, String toolTipText)Creates a new chart entity.JFreeChartEntity(Shape area, JFreeChart chart, String toolTipText, String urlText)Creates a new chart entity. -
Method Summary
Modifier and Type Method Description Objectclone()Returns a clone of the entity.booleanequals(Object obj)Tests the entity for equality with an arbitrary object.JFreeChartgetChart()Returns the chart that occupies the entity area.inthashCode()Returns a hash code for this instance.StringtoString()Returns a string representation of the chart entity, useful for debugging.Methods inherited from class org.jfree.chart.entity.ChartEntity
getArea, getImageMapAreaTag, getShapeCoords, getShapeType, getToolTipText, getURLText, setArea, setToolTipText, setURLText
-
Constructor Details
-
JFreeChartEntity
Creates a new chart entity.- Parameters:
area- the area (nullnot permitted).chart- the chart (nullnot permitted).
-
JFreeChartEntity
Creates a new chart entity.- Parameters:
area- the area (nullnot permitted).chart- the chart (nullnot permitted).toolTipText- the tool tip text (nullpermitted).
-
JFreeChartEntity
Creates a new chart entity.- Parameters:
area- the area (nullnot permitted).chart- the chart (nullnot permitted).toolTipText- the tool tip text (nullpermitted).urlText- the URL text for HTML image maps (nullpermitted).
-
-
Method Details
-
getChart
Returns the chart that occupies the entity area.- Returns:
- The chart (never
null).
-
toString
Returns a string representation of the chart entity, useful for debugging.- Overrides:
toStringin classChartEntity- Returns:
- A string.
-
equals
Tests the entity for equality with an arbitrary object.- Overrides:
equalsin classChartEntity- Parameters:
obj- the object to test against (nullpermitted).- Returns:
- A boolean.
-
hashCode
Returns a hash code for this instance.- Overrides:
hashCodein classChartEntity- Returns:
- A hash code.
-
clone
Returns a clone of the entity.- Specified by:
clonein interfacePublicCloneable- Overrides:
clonein classChartEntity- Returns:
- A clone.
- Throws:
CloneNotSupportedException- if there is a problem cloning the entity.
-