Class FaceletContext
- Direct Known Subclasses:
FaceletContextImplBase
public abstract class FaceletContext
extends jakarta.el.ELContext
Context representative of a single request from a Facelet. This instance is passed to nearly every method call in this API.
- Since:
- 2.0
-
Field Summary
Fields Modifier and Type Field Description static StringFACELET_CONTEXT_KEY -
Constructor Summary
Constructors Constructor Description FaceletContext() -
Method Summary
Modifier and Type Method Description abstract StringgenerateUniqueId(String base)Generate a unique ID for the passed Stringabstract ObjectgetAttribute(String name)Return an attribute set by a previous call tosetAttribute(java.lang.String, java.lang.Object).abstract jakarta.el.ExpressionFactorygetExpressionFactory()The ExpressionFactory to use within the Facelet this context is executing upon.abstract FacesContextgetFacesContext()The current FacesContext bound to this "request".abstract voidincludeFacelet(UIComponent parent, String relativePath)Include another Facelet defined at some path, relative to the executing context, not the current Facelet (same as include directive in Jakarta Server Pages)abstract voidincludeFacelet(UIComponent parent, URL absolutePath)Include another Facelet defined at some path, absolute to this ClassLoader/OSabstract voidsetAttribute(String name, Object value)Support method which is backed by the current VariableMapper.abstract voidsetFunctionMapper(jakarta.el.FunctionMapper fnMapper)Set the FunctionMapper to use in EL evaluation/creation.abstract voidsetVariableMapper(jakarta.el.VariableMapper varMapper)Set the VariableMapper to use in EL evaluation/creation.Methods inherited from class jakarta.el.ELContext
addEvaluationListener, convertToType, enterLambdaScope, exitLambdaScope, getContext, getELResolver, getEvaluationListeners, getFunctionMapper, getImportHandler, getLambdaArgument, getLocale, getVariableMapper, isLambdaArgument, isPropertyResolved, notifyAfterEvaluation, notifyBeforeEvaluation, notifyPropertyResolved, putContext, setLocale, setPropertyResolved, setPropertyResolved
-
Field Details
-
Constructor Details
-
FaceletContext
public FaceletContext()
-
-
Method Details
-
getFacesContext
The current FacesContext bound to this "request". Must not be
null.- Returns:
- The current FacesContext bound to this "request".
- Since:
- 2.0
-
generateUniqueId
Generate a unique ID for the passed String
- Parameters:
base- the string from which to generate the ID.- Returns:
- the generated id
- Since:
- 2.0
-
getExpressionFactory
public abstract jakarta.el.ExpressionFactory getExpressionFactory()The ExpressionFactory to use within the Facelet this context is executing upon. Must not be
null.- Returns:
- the
ExpressionFactoryfor this Facelet. - Since:
- 2.0
-
setVariableMapper
public abstract void setVariableMapper(jakarta.el.VariableMapper varMapper)Set the VariableMapper to use in EL evaluation/creation.
- Parameters:
varMapper- the newVariableMapper- Since:
- 2.0
-
setFunctionMapper
public abstract void setFunctionMapper(jakarta.el.FunctionMapper fnMapper)Set the FunctionMapper to use in EL evaluation/creation.
- Parameters:
fnMapper- the newFunctionMapper- Since:
- 2.0
-
setAttribute
Support method which is backed by the current VariableMapper.
- Parameters:
name- the name of the attributevalue- the value of the attribute- Since:
- 2.0
-
getAttribute
Return an attribute set by a previous call to
setAttribute(java.lang.String, java.lang.Object). Support method which is backed by the current VariableMapper- Parameters:
name- the name of the attribute to return.- Returns:
- the value of the named attribute
- Since:
- 2.0
-
includeFacelet
Include another Facelet defined at some path, relative to the executing context, not the current Facelet (same as include directive in Jakarta Server Pages)
- Parameters:
parent- theUIComponentthat will be the parent of any components in the included facelet.relativePath- the path of the resource containing the facelet markup, relative to the current markup- Throws:
IOException- if unable to loadrelativePathFaceletException- if unable to parse the markup loaded fromrelativePathFacesException- if unable to create childUIComponentinstancesjakarta.el.ELException- if any of the expressions in the markup loaded fromrelativePathfail- Since:
- 2.0
-
includeFacelet
Include another Facelet defined at some path, absolute to this ClassLoader/OS
- Parameters:
parent- theUIComponentthat will be the parent of any components in the included facelet.absolutePath- the absolute path to the resource containing the facelet markup- Throws:
IOException- if unable to loadrelativePathFaceletException- if unable to parse the markup loaded fromrelativePathFacesException- if unable to create childUIComponentinstancesjakarta.el.ELException- if any of the expressions in the markup loaded fromrelativePathfail
-