Package org.zkoss.bind.converter.sys
Class AbstractSelectedIndexConverter<C extends org.zkoss.zk.ui.Component>
- java.lang.Object
-
- org.zkoss.bind.converter.sys.AbstractSelectedIndexConverter<C>
-
- All Implemented Interfaces:
java.io.Serializable,Converter<java.lang.Object,java.lang.Object,C>
- Direct Known Subclasses:
ComboboxSelectedIndexConverter,ListboxSelectedIndexConverter,RadiogroupSelectedIndexConverter,SelectboxSelectedIndexConverter,TabboxSelectedIndexConverter
public abstract class AbstractSelectedIndexConverter<C extends org.zkoss.zk.ui.Component> extends java.lang.Object implements Converter<java.lang.Object,java.lang.Object,C>, java.io.Serializable
Convert selected index to bean and vice versa.- Since:
- 6.0.0
- Author:
- dennis
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface org.zkoss.bind.Converter
IGNORED_VALUE
-
-
Constructor Summary
Constructors Constructor Description AbstractSelectedIndexConverter()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectcoerceToBean(java.lang.Object val, C comp, BindContext ctx)Coerces a value to bean value to save to a beanjava.lang.ObjectcoerceToUi(java.lang.Object val, C comp, BindContext ctx)Coerces a value to another value to load to a componentprotected abstract org.zkoss.zul.ListModel<?>getComponentModel(C comp)
-
-
-
Method Detail
-
coerceToUi
public java.lang.Object coerceToUi(java.lang.Object val, C comp, BindContext ctx)Description copied from interface:ConverterCoerces a value to another value to load to a component- Specified by:
coerceToUiin interfaceConverter<java.lang.Object,java.lang.Object,C extends org.zkoss.zk.ui.Component>- Parameters:
val- the bean valuecomp- the component to be loaded the valuectx- the bind context- Returns:
- the value to load to a component
-
getComponentModel
protected abstract org.zkoss.zul.ListModel<?> getComponentModel(C comp)
-
coerceToBean
public java.lang.Object coerceToBean(java.lang.Object val, C comp, BindContext ctx)Description copied from interface:ConverterCoerces a value to bean value to save to a bean- Specified by:
coerceToBeanin interfaceConverter<java.lang.Object,java.lang.Object,C extends org.zkoss.zk.ui.Component>- Parameters:
val- the value of component attribute.comp- the component provides the valuectx- the bind context- Returns:
- the value to save to a bean
-
-