Package com.storedobject.chart
Interface TreeDataProvider
- All Superinterfaces:
ComponentPart
,ComponentProperty
- All Known Implementing Classes:
TreeData
Representation of tree-type data.
- Author:
- Syam
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptiondefault void
Encode the JSON string with the properties of this.Stream
<? extends TreeDataProvider> Get the child nodes.default ItemStyle
getItemStyle
(boolean create) Get item style.default TreeDataProvider.Label
getLabel
(boolean create) Get the label for this tree node.getValue()
Get data value.default void
validate()
This method is invoked bySOChart
to check if the component or part is valid or not.Methods inherited from interface com.storedobject.chart.ComponentPart
className, getId, getName, getRenderingIndex, getSerial, setName, setRenderingIndex, setSerial
-
Method Details
-
getValue
-
getChildren
Stream<? extends TreeDataProvider> getChildren()Get the child nodes.- Returns:
- Child nodes as a stream.
-
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.
-
validate
default 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
-
getLabel
Get the label for this tree node.- Parameters:
create
- Whether to create it if not exists.- Returns:
- Return the label.
-
getItemStyle
Get item style.- Parameters:
create
- If passed true, a new style is created if not exists.- Returns:
- Item style.
-