Package org.zkoss.bind.converter.sys
Class ImageContentConverter
- java.lang.Object
-
- org.zkoss.bind.converter.sys.ImageContentConverter
-
- All Implemented Interfaces:
java.io.Serializable
,Converter<java.lang.Object,java.lang.Object,Image>
public class ImageContentConverter extends java.lang.Object implements java.io.Serializable, Converter<java.lang.Object,java.lang.Object,Image>
- Author:
- Ian Y.T Tsai(zanyking)
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface org.zkoss.bind.Converter
IGNORED_VALUE
-
-
Constructor Summary
Constructors Constructor Description ImageContentConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
coerceToBean(java.lang.Object compAttr, Image imgComp, BindContext ctx)
Coerces a value to bean value to save to a beanjava.lang.Object
coerceToUi(java.lang.Object beanProp, Image imgComp, BindContext ctx)
Coerces a value to another value to load to a component
-
-
-
Method Detail
-
coerceToUi
public java.lang.Object coerceToUi(java.lang.Object beanProp, Image imgComp, 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,Image>
- Parameters:
beanProp
- the bean valueimgComp
- 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 compAttr, Image imgComp, 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,Image>
- Parameters:
compAttr
- the value of component attribute.imgComp
- the component provides the valuectx
- the bind context- Returns:
- the value to save to a bean
-
-