org.jfree.chart.entity

Class AxisEntity

public class AxisEntity extends ChartEntity

A class that captures information about an Axis of a chart.

Since: 1.0.13

Constructor Summary
AxisEntity(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
Objectclone()
Returns a clone of the entity.
booleanequals(Object obj)
Tests the entity for equality with an arbitrary object.
AxisgetAxis()
Returns the axis 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.

Constructor Detail

AxisEntity

public AxisEntity(Shape area, Axis axis)
Creates a new axis entity.

Parameters: area the area (null not permitted). axis the axis (null not permitted).

AxisEntity

public AxisEntity(Shape area, Axis axis, String toolTipText)
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

public AxisEntity(Shape area, Axis axis, String toolTipText, String urlText)
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 Detail

clone

public Object clone()
Returns a clone of the entity.

Returns: A clone.

Throws: CloneNotSupportedException if there is a problem cloning the entity.

equals

public boolean equals(Object obj)
Tests the entity for equality with an arbitrary object.

Parameters: obj the object to test against (null permitted).

Returns: A boolean.

getAxis

public Axis getAxis()
Returns the axis that occupies the entity area.

Returns: The axis (never null).

hashCode

public int hashCode()
Returns a hash code for this instance.

Returns: A hash code.

toString

public String toString()
Returns a string representation of the chart entity, useful for debugging.

Returns: A string.

Copyright © 2000-2009 by Object Refinery Limited. All Rights Reserved.