|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.el.ELContext javax.faces.view.facelets.FaceletContext
public abstract class FaceletContext
Context representative of a single request from a Facelet. This instance is passed to nearly every method call in this API.
Field Summary | |
---|---|
static java.lang.String |
FACELET_CONTEXT_KEY
|
Constructor Summary | |
---|---|
FaceletContext()
|
Method Summary | |
---|---|
abstract java.lang.String |
generateUniqueId(java.lang.String base)
Generate a unique ID for the passed String |
abstract java.lang.Object |
getAttribute(java.lang.String name)
Return an attribute set by a
previous call to |
abstract javax.el.ExpressionFactory |
getExpressionFactory()
The ExpressionFactory to use within the Facelet this context is executing upon. |
abstract FacesContext |
getFacesContext()
The current FacesContext bound to this "request". |
abstract void |
includeFacelet(UIComponent parent,
java.lang.String relativePath)
Include another Facelet defined at some path, relative to the executing context, not the current Facelet (same as include directive in JSP) |
abstract void |
includeFacelet(UIComponent parent,
java.net.URL absolutePath)
Include another Facelet defined at some path, absolute to this ClassLoader/OS |
abstract void |
setAttribute(java.lang.String name,
java.lang.Object value)
Support method which is backed by the current VariableMapper. |
abstract void |
setFunctionMapper(javax.el.FunctionMapper fnMapper)
Set the FunctionMapper to use in EL evaluation/creation. |
abstract void |
setVariableMapper(javax.el.VariableMapper varMapper)
Set the VariableMapper to use in EL evaluation/creation. |
Methods inherited from class javax.el.ELContext |
---|
getContext, getELResolver, getFunctionMapper, getLocale, getVariableMapper, isPropertyResolved, putContext, setLocale, setPropertyResolved |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String FACELET_CONTEXT_KEY
Constructor Detail |
---|
public FaceletContext()
Method Detail |
---|
public abstract FacesContext getFacesContext()
The current FacesContext bound to
this "request". Must not be null
.
public abstract java.lang.String generateUniqueId(java.lang.String base)
Generate a unique ID for the passed String
base
- the string from which to generate the ID.public abstract javax.el.ExpressionFactory getExpressionFactory()
The ExpressionFactory to use within
the Facelet this context is executing upon. Must not be
null
.
public abstract void setVariableMapper(javax.el.VariableMapper varMapper)
Set the VariableMapper to use in EL evaluation/creation.
varMapper
- the new VariableMapper
public abstract void setFunctionMapper(javax.el.FunctionMapper fnMapper)
Set the FunctionMapper to use in EL evaluation/creation.
fnMapper
- the new FunctionMapper
public abstract void setAttribute(java.lang.String name, java.lang.Object value)
Support method which is backed by the current VariableMapper.
name
- the name of the attributevalue
- the value of the attributepublic abstract java.lang.Object getAttribute(java.lang.String name)
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
name
- the name of the attribute to return.public abstract void includeFacelet(UIComponent parent, java.lang.String relativePath) throws java.io.IOException
Include another Facelet defined at some path, relative to the executing context, not the current Facelet (same as include directive in JSP)
parent
- the UIComponent
that 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
java.io.IOException
- if unable to load relativePath
FaceletException
- if unable to parse the markup loaded from relativePath
FacesException
- if unable to create child UIComponent
instances
javax.el.ELException
- if any of the expressions in the markup
loaded from relativePath
failpublic abstract void includeFacelet(UIComponent parent, java.net.URL absolutePath) throws java.io.IOException
Include another Facelet defined at some path, absolute to this ClassLoader/OS
parent
- the UIComponent
that will be the
parent of any components in the included facelet.absolutePath
- the absolute path to the resource containing
the facelet markup
java.io.IOException
- if unable to load relativePath
FaceletException
- if unable to parse the markup loaded from relativePath
FacesException
- if unable to create child UIComponent
instances
javax.el.ELException
- if any of the expressions in the markup
loaded from relativePath
fail
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |