Package javax.faces.el
Class ValueBinding
- java.lang.Object
-
- javax.faces.el.ValueBinding
-
public abstract class ValueBinding extends Object
Deprecated.see Javadoc of JSF Specification
-
-
Constructor Summary
Constructors Constructor Description ValueBinding()
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getExpressionString()
Deprecated.abstract Class
getType(FacesContext facesContext)
Deprecated.abstract Object
getValue(FacesContext facesContext)
Deprecated.abstract boolean
isReadOnly(FacesContext facesContext)
Deprecated.abstract void
setValue(FacesContext facesContext, Object value)
Deprecated.
-
-
-
Method Detail
-
getExpressionString
public String getExpressionString()
Deprecated.
-
getType
public abstract Class getType(FacesContext facesContext) throws EvaluationException, PropertyNotFoundException
Deprecated.
-
getValue
public abstract Object getValue(FacesContext facesContext) throws EvaluationException, PropertyNotFoundException
Deprecated.
-
isReadOnly
public abstract boolean isReadOnly(FacesContext facesContext) throws EvaluationException, PropertyNotFoundException
Deprecated.
-
setValue
public abstract void setValue(FacesContext facesContext, Object value) throws EvaluationException, PropertyNotFoundException
Deprecated.
-
-