- java.lang.Object
-
- org.jfree.chart.entity.ChartEntity
-
- org.jfree.chart.entity.NodeEntity
-
- All Implemented Interfaces:
Serializable,Cloneable,PublicCloneable
public class NodeEntity extends ChartEntity
A chart entity representing a node in aFlowPlot.- Since:
- 1.5.3
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NodeEntity(Shape area, String toolTipText, String urlText)Creates a new instance.NodeEntity(NodeKey key, Shape area, String toolTipText)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NodeKeygetKey()Returns the node key.StringtoString()Returns a string representation of this instance, primarily for debugging purposes.-
Methods inherited from class org.jfree.chart.entity.ChartEntity
clone, equals, getArea, getImageMapAreaTag, getShapeCoords, getShapeType, getToolTipText, getURLText, hashCode, setArea, setToolTipText, setURLText
-
-
-
-
Constructor Detail
-
NodeEntity
public NodeEntity(NodeKey key, Shape area, String toolTipText)
Creates a new instance.- Parameters:
key- the node key (nullnot permitted).area- the outline of the entity (nullnot permitted).toolTipText- the tool tip text.
-
NodeEntity
public NodeEntity(Shape area, String toolTipText, String urlText)
Creates a new instance.- Parameters:
area- the outline of the entity (nullnot permitted).toolTipText- the tool tip text.urlText- the URL text.
-
-