Package org.zkoss.zkmax.bind.impl
Class BiglistboxSelectedIndexConverter
- java.lang.Object
-
- org.zkoss.zkmax.bind.impl.BiglistboxSelectedIndexConverter
-
- All Implemented Interfaces:
java.io.Serializable
,Converter<java.lang.Object,java.lang.Object,Component>
public class BiglistboxSelectedIndexConverter extends java.lang.Object implements Converter<java.lang.Object,java.lang.Object,Component>, java.io.Serializable
Convert selected index to bean and vice versa.- Since:
- 6.0.1
- Author:
- dennis
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface org.zkoss.bind.Converter
IGNORED_VALUE
-
-
Constructor Summary
Constructors Constructor Description BiglistboxSelectedIndexConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
coerceToBean(java.lang.Object val, Component comp, BindContext ctx)
Coerces a value to bean value to save to a beanjava.lang.Object
coerceToUi(java.lang.Object val, Component comp, BindContext ctx)
Coerces a value to another value to load to a component
-
-
-
Method Detail
-
coerceToUi
public java.lang.Object coerceToUi(java.lang.Object val, Component comp, BindContext ctx)
Description copied from interface:Converter
Coerces a value to another value to load to a component- Specified by:
coerceToUi
in interfaceConverter<java.lang.Object,java.lang.Object,Component>
- Parameters:
val
- the bean valuecomp
- the component to be loaded the valuectx
- the bind context- Returns:
- the value to load to a component
-
coerceToBean
public java.lang.Object coerceToBean(java.lang.Object val, Component comp, BindContext ctx)
Description copied from interface:Converter
Coerces a value to bean value to save to a bean- Specified by:
coerceToBean
in interfaceConverter<java.lang.Object,java.lang.Object,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
-
-