Home » Mojarra-2.0.1 » javax » faces » el » [javadoc | source]
javax.faces.el
abstract public class: ValueBinding [javadoc | source]
java.lang.Object
   javax.faces.el.ValueBinding

Direct Known Subclasses:
    ValueBindingValueExpressionAdapter

Deprecated! This - has been replaced by javax.el.ValueExpression .

ValueBinding is an object that can be used to access the property represented by an action or value binding expression. An immutable ValueBinding for a particular value binding can be acquired by calling the createValueBinding() method of the javax.faces.application.Application instance for this web application.

Method from javax.faces.el.ValueBinding Summary:
getExpressionString,   getType,   getValue,   isReadOnly,   setValue
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from javax.faces.el.ValueBinding Detail:
 public String getExpressionString() 
      Deprecated!

    Return the (possibly null) expression String, including the delimiters, from which this ValueBinding was built.

 abstract public Class getType(FacesContext context) throws EvaluationException, PropertyNotFoundException       Deprecated!
 abstract public Object getValue(FacesContext context) throws EvaluationException, PropertyNotFoundException       Deprecated!
 abstract public boolean isReadOnly(FacesContext context) throws EvaluationException, PropertyNotFoundException       Deprecated!

    Return true if the specified property of the specified property is known to be immutable; otherwise, return false.

 abstract public  void setValue(FacesContext context,
    Object value) throws EvaluationException, PropertyNotFoundException       Deprecated!