public interface IStateBrokerHandler
StateBroker
.Modifier and Type | Method and Description |
---|---|
boolean |
addValue(java.lang.Object value,
java.lang.Object parent,
StateBroker broker)
Adds the object to the specified
StateBroker . |
java.lang.String |
getKey(java.lang.Object object)
Get the object's key for use with a
StateBroker . |
void |
setDataSource(DataSource dataSource)
Sets the DataSource (Input or Reference) for which data is being added to
the tree.
|
java.lang.String getKey(java.lang.Object object)
StateBroker
.object
- The object that will be added to a StateBroker.boolean addValue(java.lang.Object value, java.lang.Object parent, StateBroker broker)
StateBroker
.value
- The value to add to the StateBroker.parent
- The parent of the value object.broker
- The StateBroker that will store the value. If null, no value
is added.void setDataSource(DataSource dataSource)
dataSource
- The DataSource for the data being added to the broker (Input
or Reference).