Package com.storedobject.chart
Class Node.Type
java.lang.Object
com.storedobject.chart.Node.Type
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Encode the JSON string with the properties of this.final long
getId()
Each part should have a unique Id.final String
getName()
Get the name of this part.int
Get the current serial number (Serial number used internal purposes only).void
setSerial
(int serial) Set a serial number (Serial number used internal purposes only).setSymbolImage
(String url) setSymbolSize
(int width) setSymbolSize
(int width, int height) setSymbolSvgPath
(String svgPath) setSymbolType
(PointSymbolType type) 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
-
Type
-
-
Method Details
-
setSymbolType
-
setSymbolImage
-
setSymbolSvgPath
-
setSymbolSize
-
setSymbolSize
-
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.
-
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.
-