public interface AttributesBinding extends ControlBinding
| Modifier and Type | Method and Description | 
|---|---|
java.util.List | 
getErrors()
Returns a list of errors that were raised during the last setInputValue
 call. 
 | 
java.lang.Object | 
getInputValue(int index)
Returns the value that should be rendered on a view for the attribute
 associated with this binding at the specified position. 
 | 
java.lang.String[] | 
getLabelSet()
Returns the display label or prompt for the all the attributes represented by this
 binding. 
 | 
boolean | 
isUpdateable(int index)
Finds out whether the attribute is updateable or is for display only. 
 | 
void | 
setInputValue(int index,
             java.lang.Object inputVal)
Updates the attribute value associated with this binding at the given position. 
 | 
getName, getPath, release, resolvePath, setListenerjava.lang.Object getInputValue(int index)
index - index of the attribute to retrieve.void setInputValue(int index,
                 java.lang.Object inputVal)
index - index of the attribute to be updated.inputVal - The new attribute value.boolean isUpdateable(int index)
java.lang.String[] getLabelSet()
java.util.List getErrors()
setInputValue(int, Object)