Package org.jfree.chart.entity
Class AxisEntity
java.lang.Object
org.jfree.chart.entity.ChartEntity
org.jfree.chart.entity.AxisEntity
- All Implemented Interfaces:
Serializable
,Cloneable
,PublicCloneable
A class that captures information about an
Axis
belonging to a
chart.- See Also:
-
Constructor Summary
ConstructorDescriptionAxisEntity
(Shape area, Axis axis) Creates a new axis entity.AxisEntity
(Shape area, Axis axis, String toolTipText) Creates a new axis entity.AxisEntity
(Shape area, Axis axis, String toolTipText, String urlText) Creates a new axis entity. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Ensures symmetry between super/subclass implementations of equals.clone()
Returns a clone of the entity.boolean
Tests the entity for equality with an arbitrary object.getAxis()
Returns the axis that occupies the entity area.int
hashCode()
Returns a hash code for this instance.toString()
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
-
AxisEntity
Creates a new axis entity.- Parameters:
area
- the area (null
not permitted).axis
- the axis (null
not permitted).
-
AxisEntity
Creates a new axis entity.- Parameters:
area
- the area (null
not permitted).axis
- the axis (null
not permitted).toolTipText
- the tool tip text (null
permitted).
-
AxisEntity
Creates a new axis entity.- Parameters:
area
- the area (null
not permitted).axis
- the axis (null
not permitted).toolTipText
- the tool tip text (null
permitted).urlText
- the URL text for HTML image maps (null
permitted).
-
-
Method Details
-
getAxis
Returns the axis that occupies the entity area.- Returns:
- The axis (never
null
).
-
toString
Returns a string representation of the chart 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.
-
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
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.
-