javax.faces.component.behavior
Class ClientBehaviorBase

java.lang.Object
  extended by javax.faces.component.behavior.BehaviorBase
      extended by 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 override getScript() to locally generate the desired Behavior script, and decode().

Since:
2.0

Constructor Summary
ClientBehaviorBase()
           
 
Method Summary
 void decode(FacesContext context, UIComponent component)
          

Default implementation of of ClientBehavior#decode.

 java.util.Set<ClientBehaviorHint> getHints()
          

Default implementation of ClientBehavior#getHints().

protected  ClientBehaviorRenderer getRenderer(FacesContext context)
          

Convenience method to return the ClientBehaviorRenderer instance associated with this ClientBehavior, if any; otherwise, return null.

 java.lang.String getRendererType()
          

Returns the renderer type of the ClientBehaviorRenderer to use for the behavior.

 java.lang.String getScript(ClientBehaviorContext behaviorContext)
          

Default implementation of of ClientBehavior#getScript.

 
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
 

Constructor Detail

ClientBehaviorBase

public ClientBehaviorBase()
Method Detail

getScript

public java.lang.String getScript(ClientBehaviorContext behaviorContext)

Default implementation of of ClientBehavior#getScript. If a ClientBehaviorRenderer is available for the specified behavior renderer type, this method delegates to the ClientBehaviorRenderer#getScript method. Otherwise, this method returns null.

Specified by:
getScript in interface ClientBehavior
Parameters:
behaviorContext - the ClientBehaviorContext
Returns:
the script provided by the associated ClientBehaviorRenderer, or null if no ClientBehaviorRenderer is available.
Throws:
java.lang.NullPointerException - if behaviorContext is null
Since:
2.0

decode

public void decode(FacesContext context,
                   UIComponent component)

Default implementation of of ClientBehavior#decode. If a ClientBehaviorRenderer 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 interface ClientBehavior
Parameters:
context - FacesContext for the request we are processing
component - UIComponent the component associated with this ClientBehavior
Throws:
java.lang.NullPointerException - if context or component is null.
Since:
2.0

getRendererType

public java.lang.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 of ClientBehaviorRenderer to use, or should override getScript(javax.faces.component.behavior.ClientBehaviorContext) and perform script rendering locally in the ClientBehavior implementation.

Returns:
the default renderer type, which is null.
Since:
2.0

getHints

public java.util.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 interface ClientBehavior
Returns:
an empty, unmodifiable set of ClientBehaviorHints.
Since:
2.0

getRenderer

protected ClientBehaviorRenderer getRenderer(FacesContext context)

Convenience method to return the ClientBehaviorRenderer instance associated with this ClientBehavior, if any; otherwise, return null.

Parameters:
context - FacesContext for the request we are processing
Returns:
ClientBehaviorRenderer instance from the current RenderKit or null.
Throws:
java.lang.NullPointerException - if context is null.
Since:
2.0


Submit a bug or feature

Copyright © 2009-2011, Oracle Corporation and/or its affiliates. All Rights Reserved. Use is subject to license terms.

Generated on 10-February-2011 12:41

Scripting on this page tracks web page traffic, but does not change the content in any way.