In JSF, the interface is Converterdesigned for the sole purpose of:
- , Java, Object-to-Object String-to-Object , .
...
getAsObject , UIComponent, , " " .
getAsString , UIComponent, , , .
javadoc, JSF .
. , , super. .
public class SomeExtendedConverter extends SomeBasicConverter {
@Override
public Object getAsObject(FacesContext context, UIComponent component, String value) {
Object basicConvertedValue = super.getAsObject(context, component, value);
return extendedConvertedValue;
}
}