Package com.sun.faces.el
Class VariableResolverImpl
java.lang.Object
jakarta.faces.el.VariableResolver
com.sun.faces.el.VariableResolverImpl
public class VariableResolverImpl extends VariableResolver
Concrete implementation of VariableResolver
.
-
Constructor Summary
Constructors Constructor Description VariableResolverImpl()
-
Method Summary
Modifier and Type Method Description VariableResolver
getDelegate()
Object
resolveVariable(FacesContext context, String name)
Resolve the specified variable name, and return the corresponding object, if any; otherwise, returnnull
.void
setDelegate(VariableResolver delegate)
-
Constructor Details
-
VariableResolverImpl
public VariableResolverImpl()
-
-
Method Details
-
resolveVariable
Description copied from class:VariableResolver
Resolve the specified variable name, and return the corresponding object, if any; otherwise, return
null
.- Specified by:
resolveVariable
in classVariableResolver
- Parameters:
context
-FacesContext
against which to resolve this variable namename
- Name of the variable to be resolved- Returns:
- the result of the resolution
- Throws:
EvaluationException
- if an exception is thrown while resolving the variable name (the thrown exception must be included as thecause
property of this exception)
-
setDelegate
-
getDelegate
-