| org.zkoss.jsf.zul.impl.ValueHolderSupport
All known Subclasses: org.zkoss.jsf.zul.impl.BranchOutput,
ValueHolderSupport | public interface ValueHolderSupport (Code) | | Define a set of interface to support
javax.faces.component.ValueHolder author: Dennis.Chen |
Method Summary | |
public String | getMappedAttributeName() Return the attribute name of a zul component.
A Handler which process this interface will set the value of
javax.faces.component.ValueHolder into the attribute of ZUL Component. | public Object | transferValueForAttribute(String value) The value from a converter or from request submitting is a String.
In some ZUL Component doen't have the suitable attribute to set a String as it's value,
such as Calendar, So we need Component implementation transfer String to suitable object.
Parameters: value - a String value to transfer to a component suitable Object. |
getMappedAttributeName | public String getMappedAttributeName()(Code) | | Return the attribute name of a zul component.
A Handler which process this interface will set the value of
javax.faces.component.ValueHolder into the attribute of ZUL Component.
return null means do not set the value of ValueHolder into zul component.
name of attribute of zul component. |
transferValueForAttribute | public Object transferValueForAttribute(String value)(Code) | | The value from a converter or from request submitting is a String.
In some ZUL Component doen't have the suitable attribute to set a String as it's value,
such as Calendar, So we need Component implementation transfer String to suitable object.
Parameters: value - a String value to transfer to a component suitable Object. the suitable Object to set to attribute of zul component. |
|
|