Package org.zkoss.bind.converter.sys
Class ErrorMessageConverter
- java.lang.Object
-
- org.zkoss.bind.converter.sys.ErrorMessageConverter
-
- All Implemented Interfaces:
java.io.Serializable,Converter
public class ErrorMessageConverter extends java.lang.Object implements Converter, java.io.Serializable
A internal converter that shows a error message on any component.- 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 ErrorMessageConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectcoerceToBean(java.lang.Object val, org.zkoss.zk.ui.Component component, BindContext ctx)Coerces a value to bean value to save to a beanjava.lang.ObjectcoerceToUi(java.lang.Object val, org.zkoss.zk.ui.Component component, 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, org.zkoss.zk.ui.Component component, BindContext ctx)Description copied from interface:ConverterCoerces a value to another value to load to a component- Specified by:
coerceToUiin interfaceConverter- Parameters:
val- the bean valuecomponent- 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, org.zkoss.zk.ui.Component component, BindContext ctx)Description copied from interface:ConverterCoerces a value to bean value to save to a bean- Specified by:
coerceToBeanin interfaceConverter- Parameters:
val- the value of component attribute.component- the component provides the valuectx- the bind context- Returns:
- the value to save to a bean
-
-