Package com.storedobject.chart
Class Node
java.lang.Object
com.storedobject.chart.Node
- All Implemented Interfaces:
ComponentPart
,ComponentProperty
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddEventListener
(String eventName, Runnable action) connectWith
(Node target) void
Encode the JSON string with the properties of this.getEdges()
final long
getId()
Each part should have a unique Id.final TooltipView
getInfo()
final String
getName()
Get the name of this part.int
Get the current serial number (Serial number used internal purposes only).double
double
setCategory
(Node.Type category) void
setSerial
(int serial) Set a serial number (Serial number used internal purposes only).setXCoord
(double x) setYCoord
(double y) void
validate()
This method is invoked bySOChart
to check if the component or part is valid or not.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.storedobject.chart.ComponentPart
className, getRenderingIndex, setName, setRenderingIndex
-
Constructor Details
-
Node
-
Node
-
Node
-
Node
-
-
Method Details
-
getXCoord
public double getXCoord() -
setXCoord
-
getYCoord
public double getYCoord() -
setYCoord
-
getCategory
-
setCategory
-
getInfo
-
setInfo
-
connectWith
-
addEventListener
-
getEventListeners
-
getName
Description copied from interface:ComponentPart
Get the name of this part.- Specified by:
getName
in interfaceComponentPart
- Returns:
- Name
-
getId
public final long getId()Description copied from interface:ComponentPart
Each part should have a unique Id. (It can be a final variable and can be set by callingID.newID()
.- Specified by:
getId
in interfaceComponentPart
- Returns:
- Unique Id.
-
setSerial
public void setSerial(int serial) Description copied from interface:ComponentPart
Set a serial number (Serial number used internal purposes only). The implementation of this method must be in such a way that the serial number set here must be returned by theComponentPart.getSerial()
method.- Specified by:
setSerial
in interfaceComponentPart
- Parameters:
serial
- Serial number to set.
-
getSerial
public int getSerial()Description copied from interface:ComponentPart
Get the current serial number (Serial number used internal purposes only). The serial number set by theComponentPart.setSerial(int)
method should be returned by this method.- Specified by:
getSerial
in interfaceComponentPart
- Returns:
- Current serial number.
-
getEdges
-
setEdges
-
validate
public void validate()Description copied from interface:ComponentPart
This method is invoked bySOChart
to check if the component or part is valid or not.- Specified by:
validate
in interfaceComponentPart
-
encodeJSON
Description copied from interface:ComponentProperty
Encode the JSON string with the properties of this.- Specified by:
encodeJSON
in interfaceComponentProperty
- Parameters:
sb
- Encoded JSON string to be appended to this.
-