Class ValueReferenceResolver
- java.lang.Object
-
- org.apache.myfaces.core.api.shared.ValueReferenceResolver
-
public class ValueReferenceResolver extends Object
-
-
Constructor Summary
Constructors Constructor Description ValueReferenceResolver()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static javax.el.ValueReference
resolve(javax.el.ValueExpression valueExpression, javax.el.ELContext elCtx)
This method can be used to extract the ValueReference from the given ValueExpression.static javax.el.ValueReference
resolve(javax.el.ValueExpression valueExpression, FacesContext context)
Get the ValueReference from the ValueExpression.
-
-
-
Method Detail
-
resolve
public static javax.el.ValueReference resolve(javax.el.ValueExpression valueExpression, FacesContext context)
Get the ValueReference from the ValueExpression.- Parameters:
valueExpression
- The ValueExpression for value.context
- The FacesContext.- Returns:
- A ValueReferenceWrapper with the necessary information about the ValueReference.
-
resolve
public static javax.el.ValueReference resolve(javax.el.ValueExpression valueExpression, javax.el.ELContext elCtx)
This method can be used to extract the ValueReference from the given ValueExpression.- Parameters:
valueExpression
- The ValueExpression to resolve.elCtx
- The ELContext, needed to parse and execute the expression.- Returns:
- The ValueReferenceWrapper.
-
-