|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 |
javax.faces.component Class UIComponentBase
java.lang.Object javax.faces.component.UIComponent javax.faces.component.UIComponentBase
- 所有已实现的接口:
- StateHolder
- 直接已知子类:
- UIColumn, UICommand, UIData, UIForm, UIGraphic, UIMessage, UIMessages, UINamingContainer, UIOutput, UIPanel, UIParameter, UISelectItem, UISelectItems, UIViewRoot
public abstract class UIComponentBase
- extends UIComponent
UIComponentBase is a convenience base class that
implements the default concrete behavior of all methods defined by
UIComponent
.
By default, this class defines getRendersChildren()
to find the renderer for this component and call its
getRendersChildren()
method. The default implementation
on the Renderer
returns false
. As of
version 1.2 of the JavaServer Faces Specification, component authors
are encouraged to return true
from this method and rely
on the implementation of encodeChildren(javax.faces.context.FacesContext)
in this class and in
the Renderer (Renderer.encodeChildren(javax.faces.context.FacesContext, javax.faces.component.UIComponent)
). Subclasses that wish
to manage the rendering of their children should override this method
to return true
instead.
字段摘要 |
---|
Fields inherited from class javax.faces.component.UIComponent |
---|
bindings |
构造器摘要 | |
---|---|
UIComponentBase()
|
方法摘要 | |
---|---|
protected void |
addFacesListener(FacesListener listener)
Add the specified FacesListener to the set of listeners
registered to receive event notifications from this UIComponent . |
void |
broadcast(FacesEvent event)
Broadcast the specified FacesEvent to all registered
event listeners who have expressed an interest in events of this
type. |
void |
decode(FacesContext context)
Decode any new state of this UIComponent from the
request contained in the specified FacesContext , and store
this state as needed. |
void |
encodeBegin(FacesContext context)
If our rendered property is true ,
render the beginning of the current state of this
UIComponent to the response contained in the specified
FacesContext . |
void |
encodeChildren(FacesContext context)
If our rendered property is true ,
render the child UIComponent s of this UIComponent . |
void |
encodeEnd(FacesContext context)
If our rendered property is true ,
render the ending of the current state of this
UIComponent . |
UIComponent |
findComponent(String expr)
Search for and return the UIComponent with an id
that matches the specified search expression (if any), according to the
algorithm described below. |
Map<String,Object> |
getAttributes()
Return a mutable Map representing the attributes
(and properties, see below) associated wth this UIComponent ,
keyed by attribute name (which must be a String). |
int |
getChildCount()
Return the number of child UIComponent s that are
associated with this UIComponent . |
List<UIComponent> |
getChildren()
Return a mutable List representing the child
UIComponent s associated with this component. |
String |
getClientId(FacesContext context)
Return a client-side identifier for this component, generating one if necessary. |
protected FacesContext |
getFacesContext()
Convenience method to return the FacesContext instance
for the current request. |
protected FacesListener[] |
getFacesListeners(Class clazz)
Return an array of registered FacesListener s that are
instances of the specified class. |
UIComponent |
getFacet(String name)
Convenience method to return the named facet, if it exists, or null otherwise. |
int |
getFacetCount()
Return the number of facet UIComponent s that are
associated with this UIComponent . |
Map<String,UIComponent> |
getFacets()
Return a mutable Map representing the facet
UIComponent s associated with this UIComponent ,
keyed by facet name (which must be a String). |
Iterator<UIComponent> |
getFacetsAndChildren()
Return an Iterator over the facet followed by child
UIComponent s of this UIComponent . |
String |
getId()
Return the component identifier of this UIComponent . |
UIComponent |
getParent()
Return the parent UIComponent of this
UIComponent , if any. |
protected Renderer |
getRenderer(FacesContext context)
Convenience method to return the Renderer instance
associated with this component, if any; otherwise, return
null . |
String |
getRendererType()
Return the Renderer type for this UIComponent
(if any). |
boolean |
getRendersChildren()
Return a flag indicating whether this component is responsible for rendering its child components. |
ValueBinding |
getValueBinding(String name)
Deprecated. This has been replaced by UIComponent.getValueExpression(java.lang.String) . |
boolean |
invokeOnComponent(FacesContext context,
String clientId,
ContextCallback callback)
Starting at this component in the View hierarchy, search for a
component with a |
boolean |
isRendered()
Return true if this component (and its children)
should be rendered during the Render Response phase
of the request processing lifecycle. |
boolean |
isTransient()
If true, the Object implementing this interface must not participate in state saving or restoring. |
void |
processDecodes(FacesContext context)
Perform the component tree processing required by the Apply Request Values phase of the request processing lifecycle for all facets of this component, all children of this component, and this component itself, as follows. |
void |
processRestoreState(FacesContext context,
Object state)
Perform the component tree processing required by the Restore View phase of the request processing lifecycle for all facets of this component, all children of this component, and this component itself, as follows. |
Object |
processSaveState(FacesContext context)
Perform the component tree processing required by the state saving portion of the Render Response phase of the request processing lifecycle for all facets of this component, all children of this component, and this component itself, as follows. |
void |
processUpdates(FacesContext context)
Perform the component tree processing required by the Update Model Values phase of the request processing lifecycle for all facets of this component, all children of this component, and this component itself, as follows. |
void |
processValidators(FacesContext context)
Perform the component tree processing required by the Process Validations phase of the request processing lifecycle for all facets of this component, all children of this component, and this component itself, as follows. |
void |
queueEvent(FacesEvent event)
Queue an event for broadcast at the end of the current request processing lifecycle phase. |
protected void |
removeFacesListener(FacesListener listener)
Remove the specified FacesListener from the set of listeners
registered to receive event notifications from this UIComponent . |
static Object |
restoreAttachedState(FacesContext context,
Object stateObj)
This method is called by UIComponent subclasses that
need to restore the objects they saved using saveAttachedState(javax.faces.context.FacesContext, java.lang.Object) . |
void |
restoreState(FacesContext context,
Object state)
Perform any processing required to restore the state from the entries in the state Object. |
static Object |
saveAttachedState(FacesContext context,
Object attachedObject)
This method is called by UIComponent subclasses that
want to save one or more attached objects. |
Object |
saveState(FacesContext context)
Gets the state of the instance as a Serializable Object. |
void |
setId(String id)
Set the component identifier of this UIComponent (if any). |
void |
setParent(UIComponent parent)
Set the parent UIComponent of this
UIComponent . |
void |
setRendered(boolean rendered)
Set the rendered property of this
UIComponent . |
void |
setRendererType(String rendererType)
Set the Renderer type for this UIComponent ,
or null for components that render themselves. |
void |
setTransient(boolean transientFlag)
Denotes whether or not the Object implementing this interface must or must not participate in state saving or restoring. |
void |
setValueBinding(String name,
ValueBinding binding)
Deprecated. This has been replaced by UIComponent.setValueExpression(java.lang.String, javax.el.ValueExpression) . |
类方法继承 javax.faces.component.UIComponent |
---|
encodeAll, getContainerClientId, getFamily, getValueExpression, setValueExpression |
类方法继承 java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造器详细信息 |
---|
UIComponentBase
public UIComponentBase()
方法详细信息 |
---|
getAttributes
public Map<String,Object> getAttributes()
- Description copied from class:
UIComponent
Return a mutable
Map
representing the attributes (and properties, see below) associated wth thisUIComponent
, keyed by attribute name (which must be a String). The returned implementation must support all of the standard and optionalMap
methods, plus support the following additional requirements:- The
Map
implementation must implement thejava.io.Serializable
interface. - Any attempt to add a
null
key or value must throw aNullPointerException
. - Any attempt to add a key that is not a String must throw
a
ClassCastException
. - If the attribute name specified as a key matches a property
of this
UIComponent
's implementation class, the following methods will have special behavior:containsKey
- Returnfalse
.get()
- If the property is readable, call the getter method and return the returned value (wrapping primitive values in their corresponding wrapper classes); otherwise throwIllegalArgumentException
.put()
- If the property is writeable, call the setter method to set the corresponding value (unwrapping primitive values in their corresponding wrapper classes). If the property is not writeable, or an attempt is made to set a property of primitive type tonull
, throwIllegalArgumentException
.remove
- ThrowIllegalArgumentException
.
- The
- 规范说明:
getAttributes
in classUIComponent
getValueBinding
public ValueBinding getValueBinding(String name)
- Deprecated. This has been replaced by
UIComponent.getValueExpression(java.lang.String)
. Call through to
UIComponent.getValueExpression(java.lang.String)
and examine the result. If the result is an instance of the wrapper class mandated inUIComponent.setValueBinding(java.lang.String, javax.faces.el.ValueBinding)
, extract theValueBinding
instance and return it. Otherwise, wrap the result in an implementation ofValueBinding
, and return it.- 规范说明:
getValueBinding
in classUIComponent
- 参数:
name
- Name of the attribute or property for which to retrieve aValueBinding
- 抛出异常:
NullPointerException
- ifname
isnull
setValueBinding
public void setValueBinding(String name, ValueBinding binding)
- Deprecated. This has been replaced by
UIComponent.setValueExpression(java.lang.String, javax.el.ValueExpression)
. Wrap the argument
binding
in an implementation ofValueExpression
and call through toUIComponent.setValueExpression(java.lang.String, javax.el.ValueExpression)
.- 规范说明:
setValueBinding
in classUIComponent
- 参数:
name
- Name of the attribute or property for which to set aValueBinding
binding
- TheValueBinding
to set, ornull
to remove any currently setValueBinding
- 抛出异常:
IllegalArgumentException
- ifname
is one ofid
orparent
NullPointerException
- ifname
isnull
getClientId
public String getClientId(FacesContext context)
- Description copied from class:
UIComponent
Return a client-side identifier for this component, generating one if necessary. The associated
Renderer
, if any, will be asked to convert the clientId to a form suitable for transmission to the client.The return from this method must be the same value throughout the lifetime of the instance, unless the
id
property of the component is changed, or the component is placed in aNamingContainer
whose client ID changes (for example,UIData
). However, even in these cases, consecutive calls to this method must always return the same value. The implementation must follow these steps in determining the clientId:Find the closest ancestor to this component in the view hierarchy that implements
NamingContainer
. CallgetContainerClientId()
on it and save the result as theparentId
local variable. CallUIComponent.getId()
on this component and save the result as themyId
local variable. IfmyId
isnull
, callcontext.getViewRoot().createUniqueId()
and assign the result to myId. IfparentId
is non-null
, letmyId
equalparentId + NamingContainer.SEPARATOR_CHAR + myId
. CallRenderer.convertClientId(javax.faces.context.FacesContext, java.lang.String)
, passingmyId
, and return the result.- 规范说明:
getClientId
in classUIComponent
- 参数:
context
- TheFacesContext
for the current request- 抛出异常:
NullPointerException
- ifcontext
isnull
getId
public String getId()
- Description copied from class:
UIComponent
Return the component identifier of this
UIComponent
.- 规范说明:
getId
in classUIComponent
setId
public void setId(String id)
- Description copied from class:
UIComponent
Set the component identifier of this
UIComponent
(if any). Component identifiers must obey the following syntax restrictions:- Must not be a zero-length String.
- First character must be a letter or an underscore ('_').
- Subsequent characters must be a letter, a digit, an underscore ('_'), or a dash ('-').
Component identifiers must also obey the following semantic restrictions (note that this restriction is NOT enforced by the
setId()
implementation):- The specified identifier must be unique among all the components
(including facets) that are descendents of the nearest ancestor
UIComponent
that is aNamingContainer
, or within the scope of the entire component tree if there is no such ancestor that is aNamingContainer
.
- 规范说明:
setId
in classUIComponent
- 参数:
id
- The new component identifier, ornull
to indicate that thisUIComponent
does not have a component identifier- 抛出异常:
IllegalArgumentException
- ifid
is not syntactically validIllegalStateException
getParent
public UIComponent getParent()
- Description copied from class:
UIComponent
Return the parent
UIComponent
of thisUIComponent
, if any. A component must allow child components to be added to and removed from the list of children of this component, even though the child component returns null fromgetParent( )
.- 规范说明:
getParent
in classUIComponent
setParent
public void setParent(UIComponent parent)
- Description copied from class:
UIComponent
Set the parent
UIComponent
of thisUIComponent
. This method must never be called by developers; aUIComponent
's internal implementation will call it as components are added to or removed from a parent's childList
or facetMap
.- 规范说明:
setParent
in classUIComponent
- 参数:
parent
- The new parent, ornull
for the root node of a component tree
isRendered
public boolean isRendered()
- Description copied from class:
UIComponent
Return
true
if this component (and its children) should be rendered during the Render Response phase of the request processing lifecycle.- 规范说明:
isRendered
in classUIComponent
setRendered
public void setRendered(boolean rendered)
- Description copied from class:
UIComponent
Set the
rendered
property of thisUIComponent
.- 规范说明:
setRendered
in classUIComponent
- 参数:
rendered
- Iftrue
render this component; otherwise, do not render this component
getRendererType
public String getRendererType()
- Description copied from class:
UIComponent
Return the
Renderer
type for thisUIComponent
(if any).- 规范说明:
getRendererType
in classUIComponent
setRendererType
public void setRendererType(String rendererType)
- Description copied from class:
UIComponent
Set the
Renderer
type for thisUIComponent
, ornull
for components that render themselves.- 规范说明:
setRendererType
in classUIComponent
- 参数:
rendererType
- Logical identifier of the type ofRenderer
to use, ornull
for components that render themselves
getRendersChildren
public boolean getRendersChildren()
- Description copied from class:
UIComponent
Return a flag indicating whether this component is responsible for rendering its child components. The default implementation in
getRendersChildren()
tries to find the renderer for this component. If it does, it callsRenderer.getRendersChildren()
and returns the result. If it doesn't, it returns false. As of version 1.2 of the JavaServer Faces Specification, component authors are encouraged to returntrue
from this method and rely onencodeChildren(javax.faces.context.FacesContext)
.- 规范说明:
getRendersChildren
in classUIComponent
getChildren
public List<UIComponent> getChildren()
- Description copied from class:
UIComponent
Return a mutable
List
representing the childUIComponent
s associated with this component. The returned implementation must support all of the standard and optionalList
methods, plus support the following additional requirements:- The
List
implementation must implement thejava.io.Serializable
interface. - Any attempt to add a
null
must throw a NullPointerException - Any attempt to add an object that does not implement
UIComponent
must throw a ClassCastException. - Whenever a new child component is added, the
parent
property of the child must be set to this component instance. If theparent
property of the child was already non-null, the child must first be removed from its previous parent (where it may have been either a child or a facet). - Whenever an existing child component is removed, the
parent
property of the child must be set tonull
.
- The
- 规范说明:
getChildren
in classUIComponent
getChildCount
public int getChildCount()
- Description copied from class:
UIComponent
Return the number of child
UIComponent
s that are associated with thisUIComponent
. If there are no children, this method must return 0. The method must not cause the creation of a child component list.- 规范说明:
getChildCount
in classUIComponent
findComponent
public UIComponent findComponent(String expr)
- Description copied from class:
UIComponent
Search for and return the
UIComponent
with anid
that matches the specified search expression (if any), according to the algorithm described below.For a method to find a component given a simple
clientId
, seeUIComponent.invokeOnComponent(javax.faces.context.FacesContext, java.lang.String, javax.faces.component.ContextCallback)
.Component identifiers are required to be unique within the scope of the closest ancestor
NamingContainer
that encloses this component (which might be this component itself). If there are noNamingContainer
components in the ancestry of this component, the root component in the tree is treated as if it were aNamingContainer
, whether or not its class actually implements theNamingContainer
interface.A search expression consists of either an identifier (which is matched exactly against the
id
property of aUIComponent
, or a series of such identifiers linked by theNamingContainer.SEPARATOR_CHAR
character value. The search algorithm should operates as follows, though alternate alogrithms may be used as long as the end result is the same:- Identify the
UIComponent
that will be the base for searching, by stopping as soon as one of the following conditions is met:- If the search expression begins with the the separator character
(called an "absolute" search expression),
the base will be the root
UIComponent
of the component tree. The leading separator character will be stripped off, and the remainder of the search expression will be treated as a "relative" search expression as described below. - Otherwise, if this
UIComponent
is aNamingContainer
it will serve as the basis. - Otherwise, search up the parents of this component. If
a
NamingContainer
is encountered, it will be the base. - Otherwise (if no
NamingContainer
is encountered) the rootUIComponent
will be the base.
- If the search expression begins with the the separator character
(called an "absolute" search expression),
the base will be the root
- The search expression (possibly modified in the previous step) is now
a "relative" search expression that will be used to locate the
component (if any) that has an
id
that matches, within the scope of the base component. The match is performed as follows:- If the search expression is a simple identifier, this value is
compared to the
id
property, and then recursively through the facets and children of the baseUIComponent
(except that if a descendantNamingContainer
is found, its own facets and children are not searched). - If the search expression includes more than one identifier
separated by the separator character, the first identifier is
used to locate a
NamingContainer
by the rules in the previous bullet point. Then, thefindComponent()
method of thisNamingContainer
will be called, passing the remainder of the search expression.
- If the search expression is a simple identifier, this value is
compared to the
- Identify the
- 规范说明:
findComponent
in classUIComponent
- 参数:
expr
- Search expression identifying theUIComponent
to be returned- 返回:
- the found
UIComponent
, ornull
if the component was not found. - 抛出异常:
NullPointerException
- ifexpr
isnull
invokeOnComponent
public boolean invokeOnComponent(FacesContext context, String clientId, ContextCallback callback) throws FacesException
Starting at this component in the View hierarchy, search for a component with a
clientId
equal to the argumentclientId
and, if found, call theContextCallback.invokeContextCallback(javax.faces.context.FacesContext, javax.faces.component.UIComponent)
method on the argumentcallback
, passing the currentFacesContext
and the found component as arguments. This method is similar toUIComponent.findComponent(java.lang.String)
but it does not support the leadingNamingContainer.SEPARATOR_CHAR
syntax for searching from the root of the View.The default implementation will first check if
this.getClientId()
is equal to the argumentclientId
. If so, call theContextCallback.invokeContextCallback(javax.faces.context.FacesContext, javax.faces.component.UIComponent)
method on the argument callback, passing through theFacesContext
argument and passing this as the component argument. If anException
is thrown by the callback, wrap it in aFacesException
and re-throw it. Otherwise, returntrue
.Otherwise, for each component returned by
UIComponent.getFacetsAndChildren()
, callinvokeOnComponent()
passing the arguments to this method, in order. The first timeinvokeOnComponent()
returns true, abort traversing the rest of theIterator
and returntrue
.When calling
ContextCallback.invokeContextCallback(javax.faces.context.FacesContext, javax.faces.component.UIComponent)
the implementation of this method must guarantee that the state of the component passed to the callback correctly reflects the component's position in the View hierarchy with respect to any state found in the argumentclientId
. For example, an iterating component such asUIData
will need to set its row index to correctly reflect the argumentclientId
before finding the appropriate child component backed by the correct row. When the callback returns, either normally or by throwing anException
the implementation of this method must restore the state of the view to the way it was before invoking the callback.If none of the elements from
UIComponent.getFacetsAndChildren()
returnedtrue
frominvokeOnComponent()
, returnfalse
.Simple usage example to find a component by
clientId
.private UIComponent found = null; private void doFind(FacesContext context, String clientId) { context.getViewRoot().invokeOnComponent(context, clientId, new ContextCallback() { public void invokeOnComponent(FacesContext context, UIComponent component) { found = component; } }); }
- 重写:
invokeOnComponent
in classUIComponent
- 参数:
context
- theFacesContext
for the current requestclientId
- the client identifier of the component to be passed to the argument callback.callback
- an implementation of the Callback interface.- 返回:
true
if the a component with the givenclientId
is found, the callback method was successfully invoked passing that component as an argument, and no Exception was thrown. Returnsfalse
if no component with the givenclientId
is found.- 抛出异常:
NullPointerException
- if any of the arguments are nullFacesException
- if the argument Callback throws an Exception, it is wrapped in aFacesException
and re-thrown.- 从以下版本开始:
- 1.2
getFacets
public Map<String,UIComponent> getFacets()
- Description copied from class:
UIComponent
Return a mutable
Map
representing the facetUIComponent
s associated with thisUIComponent
, keyed by facet name (which must be a String). The returned implementation must support all of the standard and optionalMap
methods, plus support the following additional requirements:- The
Map
implementation must implement thejava.io.Serializable
interface. - Any attempt to add a
null
key or value must throw a NullPointerException. - Any attempt to add a key that is not a String must throw a ClassCastException.
- Any attempt to add a value that is not a
UIComponent
must throw a ClassCastException. - Whenever a new facet
UIComponent
is added:- The
parent
property of the component must be set to this component instance. - If the
parent
property of the component was already non-null, the component must first be removed from its previous parent (where it may have been either a child or a facet).
- The
- Whenever an existing facet
UIComponent
is removed:- The
parent
property of the facet must be set tonull
.
- The
- The
- 规范说明:
getFacets
in classUIComponent
getFacetCount
public int getFacetCount()
- Description copied from class:
UIComponent
Return the number of facet
UIComponent
s that are associated with thisUIComponent
. If there are no facets, this method must return 0. The method must not cause the creation of a facet component map.For backwards compatability with classes that extend UIComponent directly, a default implementation is provided that simply calls
UIComponent.getFacets()
and then calls thesize()
method on the returnedMap
. A more optimized version of this method is provided ingetFacetCount()
.- 重写:
getFacetCount
in classUIComponent
getFacet
public UIComponent getFacet(String name)
- Description copied from class:
UIComponent
Convenience method to return the named facet, if it exists, or
null
otherwise. If the requested facet does not exist, the facets Map must not be created.- 规范说明:
getFacet
in classUIComponent
- 参数:
name
- Name of the desired facet
getFacetsAndChildren
public Iterator<UIComponent> getFacetsAndChildren()
- Description copied from class:
UIComponent
Return an
Iterator
over the facet followed by childUIComponent
s of thisUIComponent
. Facets are returned in an undefined order, followed by all the children in the order they are stored in the child list. If this component has no facets or children, an emptyIterator
is returned.The returned
Iterator
must not support theremove()
operation.- 规范说明:
getFacetsAndChildren
in classUIComponent
broadcast
public void broadcast(FacesEvent event) throws AbortProcessingException
- Description copied from class:
UIComponent
Broadcast the specified
FacesEvent
to all registered event listeners who have expressed an interest in events of this type. Listeners are called in the order in which they were added.- 规范说明:
broadcast
in classUIComponent
- 参数:
event
- TheFacesEvent
to be broadcast- 抛出异常:
AbortProcessingException
- Signal the JavaServer Faces implementation that no further processing on the current event should be performedIllegalStateException
NullPointerException
- ifevent
isnull
decode
public void decode(FacesContext context)
- Description copied from class:
UIComponent
Decode any new state of this
UIComponent
from the request contained in the specifiedFacesContext
, and store this state as needed.During decoding, events may be enqueued for later processing (by event listeners who have registered an interest), by calling
queueEvent()
.- 规范说明:
decode
in classUIComponent
- 参数:
context
-FacesContext
for the request we are processing- 抛出异常:
NullPointerException
- ifcontext
isnull
encodeBegin
public void encodeBegin(FacesContext context) throws IOException
- Description copied from class:
UIComponent
If our
rendered
property istrue
, render the beginning of the current state of thisUIComponent
to the response contained in the specifiedFacesContext
.If a
Renderer
is associated with thisUIComponent
, the actual encoding will be delegated toRenderer.encodeBegin(FacesContext, UIComponent)
.- 规范说明:
encodeBegin
in classUIComponent
- 参数:
context
-FacesContext
for the response we are creating- 抛出异常:
NullPointerException
- ifcontext
isnull
IOException
- if an input/output error occurs while rendering
encodeChildren
public void encodeChildren(FacesContext context) throws IOException
- Description copied from class:
UIComponent
If our
rendered
property istrue
, render the childUIComponent
s of thisUIComponent
. This method will only be called if therendersChildren
property istrue
.If a
Renderer
is associated with thisUIComponent
, the actual encoding will be delegated toRenderer.encodeChildren(FacesContext, UIComponent)
.- 规范说明:
encodeChildren
in classUIComponent
- 参数:
context
-FacesContext
for the response we are creating- 抛出异常:
NullPointerException
- ifcontext
isnull
IOException
- if an input/output error occurs while rendering
encodeEnd
public void encodeEnd(FacesContext context) throws IOException
- Description copied from class:
UIComponent
If our
rendered
property istrue
, render the ending of the current state of thisUIComponent
.If a
Renderer
is associated with thisUIComponent
, the actual encoding will be delegated toRenderer.encodeEnd(FacesContext, UIComponent)
.- 规范说明:
encodeEnd
in classUIComponent
- 参数:
context
-FacesContext
for the response we are creating- 抛出异常:
IOException
- if an input/output error occurs while renderingNullPointerException
- ifcontext
isnull
addFacesListener
protected void addFacesListener(FacesListener listener)
Add the specified
FacesListener
to the set of listeners registered to receive event notifications from thisUIComponent
. It is expected thatUIComponent
classes acting as event sources will have corresponding typesafe APIs for registering listeners of the required type, and the implementation of those registration methods will delegate to this method. For example:public class FooEvent extends FacesEvent { ... protected boolean isAppropriateListener(FacesListener listener) { return (listener instanceof FooListener); } protected void processListener(FacesListener listener) { ((FooListener) listener).processFoo(this); } ... } public interface FooListener extends FacesListener { public void processFoo(FooEvent event); } public class FooComponent extends UIComponentBase { ... public void addFooListener(FooListener listener) { addFacesListener(listener); } public void removeFooListener(FooListener listener) { removeFacesListener(listener); } ... }
- 规范说明:
addFacesListener
in classUIComponent
- 参数:
listener
- TheFacesListener
to be registered- 抛出异常:
NullPointerException
- iflistener
isnull
getFacesListeners
protected FacesListener[] getFacesListeners(Class clazz)
- Description copied from class:
UIComponent
Return an array of registered
FacesListener
s that are instances of the specified class. If there are no such registered listeners, a zero-length array is returned. The returned array can be safely be cast to an array strongly typed to an element type ofclazz
.- 规范说明:
getFacesListeners
in classUIComponent
- 参数:
clazz
- Class that must be implemented by aFacesListener
for it to be returned- 抛出异常:
IllegalArgumentException
- ifclass
is not, and does not implement,FacesListener
NullPointerException
- ifclazz
isnull
removeFacesListener
protected void removeFacesListener(FacesListener listener)
Remove the specified
FacesListener
from the set of listeners registered to receive event notifications from thisUIComponent
.- 规范说明:
removeFacesListener
in classUIComponent
- 参数:
listener
- TheFacesListener
to be deregistered- 抛出异常:
NullPointerException
- iflistener
isnull
queueEvent
public void queueEvent(FacesEvent event)
- Description copied from class:
UIComponent
Queue an event for broadcast at the end of the current request processing lifecycle phase. The default implementation in
UIComponentBase
must delegate this call to thequeueEvent()
method of the parentUIComponent
.- 规范说明:
queueEvent
in classUIComponent
- 参数:
event
-FacesEvent
to be queued- 抛出异常:
IllegalStateException
- if this component is not a descendant of aUIViewRoot
NullPointerException
- ifevent
isnull
processDecodes
public void processDecodes(FacesContext context)
- Description copied from class:
UIComponent
Perform the component tree processing required by the Apply Request Values phase of the request processing lifecycle for all facets of this component, all children of this component, and this component itself, as follows.
- If the
rendered
property of thisUIComponent
isfalse
, skip further processing. - Call the
processDecodes()
method of all facets and children of thisUIComponent
, in the order determined by a call togetFacetsAndChildren()
. - Call the
decode()
method of this component. - If a
RuntimeException
is thrown during decode processing, callFacesContext.renderResponse()
and re-throw the exception.
- If the
- 规范说明:
processDecodes
in classUIComponent
- 参数:
context
-FacesContext
for the request we are processing- 抛出异常:
NullPointerException
- ifcontext
isnull
processValidators
public void processValidators(FacesContext context)
- Description copied from class:
UIComponent
Perform the component tree processing required by the Process Validations phase of the request processing lifecycle for all facets of this component, all children of this component, and this component itself, as follows.
- If the
rendered
property of thisUIComponent
isfalse
, skip further processing. - Call the
processValidators()
method of all facets and children of thisUIComponent
, in the order determined by a call togetFacetsAndChildren()
.
- If the
- 规范说明:
processValidators
in classUIComponent
- 参数:
context
-FacesContext
for the request we are processing- 抛出异常:
NullPointerException
- ifcontext
isnull
processUpdates
public void processUpdates(FacesContext context)
- Description copied from class:
UIComponent
Perform the component tree processing required by the Update Model Values phase of the request processing lifecycle for all facets of this component, all children of this component, and this component itself, as follows.
- If the
rendered
property of thisUIComponent
isfalse
, skip further processing. - Call the
processUpdates()
method of all facets and children of thisUIComponent
, in the order determined by a call togetFacetsAndChildren()
.
- If the
- 规范说明:
processUpdates
in classUIComponent
- 参数:
context
-FacesContext
for the request we are processing- 抛出异常:
NullPointerException
- ifcontext
isnull
processSaveState
public Object processSaveState(FacesContext context)
- Description copied from class:
UIComponent
Perform the component tree processing required by the state saving portion of the Render Response phase of the request processing lifecycle for all facets of this component, all children of this component, and this component itself, as follows.
- consult the
transient
property of this component. If true, just returnnull
. - Call the
processSaveState()
method of all facets and children of thisUIComponent
in the order determined by a call togetFacetsAndChildren()
, skipping children and facets that are transient. - Call the
saveState()
method of this component. - Encapsulate the child state and your state into a Serializable Object and return it.
This method may not be called if the state saving method is set to server.
- consult the
- 规范说明:
processSaveState
in classUIComponent
- 参数:
context
-FacesContext
for the request we are processing- 抛出异常:
NullPointerException
- ifcontext
isnull
processRestoreState
public void processRestoreState(FacesContext context, Object state)
- Description copied from class:
UIComponent
Perform the component tree processing required by the Restore View phase of the request processing lifecycle for all facets of this component, all children of this component, and this component itself, as follows.
- Call the
processRestoreState()
method of all facets and children of thisUIComponent
in the order determined by a call togetFacetsAndChildren()
. - Call the
restoreState()
method of this component.
This method may not be called if the state saving method is set to server.
- Call the
- 规范说明:
processRestoreState
in classUIComponent
- 参数:
context
-FacesContext
for the request we are processing- 抛出异常:
NullPointerException
- ifcontext
isnull
getFacesContext
protected FacesContext getFacesContext()
- Description copied from class:
UIComponent
Convenience method to return the
FacesContext
instance for the current request.- 规范说明:
getFacesContext
in classUIComponent
getRenderer
protected Renderer getRenderer(FacesContext context)
- Description copied from class:
UIComponent
Convenience method to return the
Renderer
instance associated with this component, if any; otherwise, returnnull
.- 规范说明:
getRenderer
in classUIComponent
- 参数:
context
-FacesContext
for the current request
saveState
public Object saveState(FacesContext context)
- Description copied from interface:
StateHolder
Gets the state of the instance as a
Serializable
Object.If the class that implements this interface has references to instances that implement StateHolder (such as a
UIComponent
with event handlers, validators, etc.) this method must call theStateHolder.saveState(javax.faces.context.FacesContext)
method on all those instances as well. This method must not save the state of children and facets. That is done via theStateManager
This method must not alter the state of the implementing object. In other words, after executing this code:
Object state = component.saveState(facesContext);
component
should be the same as before executing it.The return from this method must be
Serializable
restoreState
public void restoreState(FacesContext context, Object state)
- Description copied from interface:
StateHolder
Perform any processing required to restore the state from the entries in the state Object.
If the class that implements this interface has references to instances that also implement StateHolder (such as a
UIComponent
with event handlers, validators, etc.) this method must call theStateHolder.restoreState(javax.faces.context.FacesContext, java.lang.Object)
method on all those instances as well.
isTransient
public boolean isTransient()
- Description copied from interface:
StateHolder
If true, the Object implementing this interface must not participate in state saving or restoring.
setTransient
public void setTransient(boolean transientFlag)
- Description copied from interface:
StateHolder
Denotes whether or not the Object implementing this interface must or must not participate in state saving or restoring.
- 参数:
transientFlag
- boolean passtrue
if this Object will participate in state saving or restoring, otherwise passfalse
.
saveAttachedState
public static Object saveAttachedState(FacesContext context, Object attachedObject)
This method is called by
UIComponent
subclasses that want to save one or more attached objects. It is a convenience method that does the work of saving attached objects that may or may not implement theStateHolder
interface. Using this method implies the use ofrestoreAttachedState(javax.faces.context.FacesContext, java.lang.Object)
to restore the attached objects.This method supports saving attached objects of the following type:
Object
s,null
values, andLists
of these objects. If any contained objects are notLists
and do not implementStateHolder
, they must have zero-argument public constructors. The exact structure of the returned object is undefined and opaque, but will be serializable.- 参数:
context
- theFacesContext
for this request.attachedObject
- the object, which may be aList
instance, or an Object. TheattachedObject
(or the elements that compriseattachedObject
may implementStateHolder
.- 抛出异常:
NullPointerException
- if the context argument is null.
restoreAttachedState
public static Object restoreAttachedState(FacesContext context, Object stateObj) throws IllegalStateException
This method is called by
UIComponent
subclasses that need to restore the objects they saved usingsaveAttachedState(javax.faces.context.FacesContext, java.lang.Object)
. This method is tightly coupled withsaveAttachedState(javax.faces.context.FacesContext, java.lang.Object)
.This method supports restoring all attached objects types supported by
saveAttachedState(javax.faces.context.FacesContext, java.lang.Object)
.- 参数:
context
- theFacesContext
for this requeststateObj
- the opaque object returned fromsaveAttachedState(javax.faces.context.FacesContext, java.lang.Object)
- 抛出异常:
NullPointerException
- if context is null.IllegalStateException
- if the object is not previously returned bysaveAttachedState(javax.faces.context.FacesContext, java.lang.Object)
.
|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 |
提交错误或意见
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。深圳电信培训中心.徐海蛟老师教学参考.