Package com.storedobject.chart
Class TreeData
java.lang.Object
com.storedobject.chart.TreeData
- All Implemented Interfaces:
ComponentPart
,ComponentProperty
,TreeDataProvider
An implementation of
TreeDataProvider
.- Author:
- Syam
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.storedobject.chart.TreeDataProvider
TreeDataProvider.Label
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAdd children.Create and add a child.get
(int index) Get the data at the given index.Stream
<? extends TreeDataProvider> Get the child nodes.final long
getId()
Each part should have a unique Id.final TreeDataProvider.Label
getLabel
(boolean create) Get the label for this tree node.final String
getName()
Get the name of this part.int
Get the current serial number (Serial number used internal purposes only).final Number
getValue()
Get data value.Remove children.void
setLabel
(TreeDataProvider.Label label) Set the label.void
setSerial
(int serial) Set a serial number (Serial number used internal purposes only).void
Set the value for the tree-node.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
Methods inherited from interface com.storedobject.chart.TreeDataProvider
encodeJSON, getItemStyle, validate
-
Constructor Details
-
TreeData
-
TreeData
-
-
Method Details
-
getName
Description copied from interface:ComponentPart
Get the name of this part.- Specified by:
getName
in interfaceComponentPart
- Returns:
- Name
-
getValue
Description copied from interface:TreeDataProvider
Get data value.- Specified by:
getValue
in interfaceTreeDataProvider
- Returns:
- Value.
-
setValue
Set the value for the tree-node.- Parameters:
value
- Value to be set. Could be null.
-
getChildren
Description copied from interface:TreeDataProvider
Get the child nodes.- Specified by:
getChildren
in interfaceTreeDataProvider
- Returns:
- Child nodes as a stream.
-
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.
-
add
-
add
-
remove
-
get
Get the data at the given index.- Parameters:
index
- Index.- Returns:
- Data at the given index. Returns
null
for out of bound indices.
-
getLabel
Description copied from interface:TreeDataProvider
Get the label for this tree node.- Specified by:
getLabel
in interfaceTreeDataProvider
- Parameters:
create
- Whether to create it if not exists.- Returns:
- Return the label.
-
setLabel
Set the label.- Parameters:
label
- Label to be set.
-