- java.lang.Object
-
- javax.faces.component.behavior.BehaviorBase
-
- javax.faces.component.behavior.ClientBehaviorBase
-
- All Implemented Interfaces:
- Behavior, ClientBehavior, PartialStateHolder, StateHolder
- Direct Known Subclasses:
- AjaxBehavior
public class ClientBehaviorBase extends BehaviorBase implements ClientBehavior
ClientBehaviorBase is a convenience base class that implements the default concrete behavior of all methods defined by
ClientBehavior
.Subclasses should either override getRendererType() to identify the
ClientBehaviorRenderer
to delegate to, or they should overridegetScript()
to locally generate the desired Behavior script, anddecode()
.- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor and Description ClientBehaviorBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description void
decode(FacesContext context, UIComponent component)
Default implementation of of
ClientBehavior.decode(javax.faces.context.FacesContext, javax.faces.component.UIComponent)
.Set<ClientBehaviorHint>
getHints()
Default implementation of
ClientBehavior.getHints()
.protected ClientBehaviorRenderer
getRenderer(FacesContext context)
Convenience method to return the
ClientBehaviorRenderer
instance associated with thisClientBehavior
, if any; otherwise, returnnull
.String
getRendererType()
Returns the renderer type of the
ClientBehaviorRenderer
to use for the behavior.String
getScript(ClientBehaviorContext behaviorContext)
Default implementation of of
ClientBehavior.getScript(javax.faces.component.behavior.ClientBehaviorContext)
.-
Methods inherited from class javax.faces.component.behavior.BehaviorBase
addBehaviorListener, broadcast, clearInitialState, initialStateMarked, isTransient, markInitialState, removeBehaviorListener, restoreState, saveState, setTransient
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.faces.component.behavior.Behavior
broadcast
-
-
-
-
Method Detail
-
getScript
public String getScript(ClientBehaviorContext behaviorContext)
Default implementation of of
ClientBehavior.getScript(javax.faces.component.behavior.ClientBehaviorContext)
. If aClientBehaviorRenderer
is available for the specified behavior renderer type, this method delegates to theClientBehaviorRenderer.getScript(javax.faces.component.behavior.ClientBehaviorContext, javax.faces.component.behavior.ClientBehavior)
method. Otherwise, this method returns null.- Specified by:
getScript
in interfaceClientBehavior
- Parameters:
behaviorContext
- theClientBehaviorContext
- Returns:
- the script provided by the associated ClientBehaviorRenderer, or null if no ClientBehaviorRenderer is available.
- Throws:
NullPointerException
- ifbehaviorContext
isnull
- Since:
- 2.0
-
decode
public void decode(FacesContext context, UIComponent component)
Default implementation of of
ClientBehavior.decode(javax.faces.context.FacesContext, javax.faces.component.UIComponent)
. If aClientBehaviorRenderer
is available for the specified behavior renderer type, this method delegates to the ClientBehaviorRenderer's decode() method. Otherwise, no decoding is performed.- Specified by:
decode
in interfaceClientBehavior
- Parameters:
context
-FacesContext
for the request we are processingcomponent
-UIComponent
the component associated with thisClientBehavior
- Throws:
NullPointerException
- ifcontext
orcomponent
is
null
.- Since:
- 2.0
-
getRendererType
public String getRendererType()
Returns the renderer type of the
ClientBehaviorRenderer
to use for the behavior. The default implementation returns null. Subclasses should either override this method to return a string that identifies the type ofClientBehaviorRenderer
to use, or should overridegetScript(javax.faces.component.behavior.ClientBehaviorContext)
and perform script rendering locally in theClientBehavior
implementation.- Returns:
- the default renderer type, which is null.
- Since:
- 2.0
-
getHints
public Set<ClientBehaviorHint> getHints()
Default implementation of
ClientBehavior.getHints()
. By default, no hints are specified, and this method returns an empty, umodifiable set.- Specified by:
getHints
in interfaceClientBehavior
- Returns:
- an empty, unmodifiable set of
ClientBehaviorHint
s. - Since:
- 2.0
-
getRenderer
protected ClientBehaviorRenderer getRenderer(FacesContext context)
Convenience method to return the
ClientBehaviorRenderer
instance associated with thisClientBehavior
, if any; otherwise, returnnull
.- Parameters:
context
-FacesContext
for the request we are processing- Returns:
ClientBehaviorRenderer
instance from the currentRenderKit
or null.- Throws:
NullPointerException
- ifcontext
is null.- Since:
- 2.0
-
-
Document created the 11/06/2005, last modified the 18/08/2025
Source of the printed document:https://www.gaudry.be/en/java-api-javaee-rf-javax/faces/component/behavior/clientbehaviorbase.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author of this site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.