public interface ParamHolder
extends javax.faces.component.ValueHolder
ValueHolder
with getName()
method to obtain the parameter name associated with the parameter value and changes the getLocalValue()
method to return the original, unconverted value and changes the getValue()
method to return the converted
value. This is used in among others the Faces.getBookmarkableURL(String, java.util.Collection, boolean)
.String getName()
Object getLocalValue()
getLocalValue
in interface javax.faces.component.ValueHolder
Object getValue()
Application.createConverter(Class)
, passing the value's class, then return the result of
Converter.getAsString(javax.faces.context.FacesContext, javax.faces.component.UIComponent, Object)
,
otherwise return the original value of the parameter.getValue
in interface javax.faces.component.ValueHolder
Converter.getAsString(javax.faces.context.FacesContext, javax.faces.component.UIComponent, Object)
Copyright © 2012–2014 OmniFaces. All rights reserved.