previous | index | next

Implementing Custom Converter Classes

A custom converter class must implement the javax.faces.converter.Converter interface, which has the following two methods:
    Object getAsObject(FacesContext context, UIComponent component, String newValue)
    String getAsString(FacesContext context, UIComponent component, Object value)


previous | index | next