All Implemented Interfaces:
StateHolder
All Known Implementing Classes:
ComponentStateHelper
Define a Map
-like contract
that makes it easier for components to implement PartialStateHolder . Each UIComponent in the view will
return an implementation of this interface from its UIComponent#getStateHelper method.
2.0
- Method from javax.faces.component.StateHelper Summary: |
---|
add, eval, eval, get, put, put, remove, remove |
Method from javax.faces.component.StateHelper Detail: |
---|
Store the specified
It's important to note for delta
tracking that any modifications to the internal |
Attempts to find a value associated with the specified key, using the value expression collection from the component if no such value is found. |
Performs the same logic as #eval(java.io.Serializable) } but if no value is found, this
will return the specified |
Return the value currently
associated with the specified |
Return the previously stored value and store the specified key/value pair. This is intended to store data that would otherwise reside in an instance variable on the component. |
Store the specified
It's important to note for delta tracking that any
modifications to the internal |
Remove the key/value pair from the helper, returning the value previously stored under this key. |
Remove a value from the inner data
structure. Look in the inner data structure for the value at the
given |