Uses of Interface
javax.faces.component.behavior.Behavior

Packages that use Behavior
javax.faces.application APIs that are used to link an application's business logic objects to JavaServer Faces, as well as convenient pluggable mechanisms to manage the execution of an application that is based on JavaServer Faces. 
javax.faces.component Fundamental APIs for user interface components. 
javax.faces.component.behavior APIs for attaching additional behavior to user interface components. 
javax.faces.event Interfaces describing events and event listeners, and concrete event implementation classes. 
 

Uses of Behavior in javax.faces.application
 

Methods in javax.faces.application that return Behavior
 Behavior Application.createBehavior(java.lang.String behaviorId)
          Instantiate and return a new Behavior instance of the class specified by a previous call to addBehavior() for the specified behavior id.
 Behavior ApplicationWrapper.createBehavior(java.lang.String behaviorId)
          

The default behavior of this method is to call Application.createBehavior(String) on the wrapped Application object.

 Behavior ApplicationWrapper.createBehavior(java.lang.String behaviorId)
          

The default behavior of this method is to call Application.createBehavior(String) on the wrapped Application object.

 Behavior Application.createBehavior(java.lang.String behaviorId)
          Instantiate and return a new Behavior instance of the class specified by a previous call to addBehavior() for the specified behavior id.
 

Uses of Behavior in javax.faces.component
 

Classes in javax.faces.component that implement Behavior
static class UIComponentBaseBehaviorTestCase.TestBehavior
           
 

Uses of Behavior in javax.faces.component.behavior
 

Subinterfaces of Behavior in javax.faces.component.behavior
 interface ClientBehavior
          

ClientBehavior is the base contract for Behaviors that attach script content to client-side events exposed by ClientBehaviorHolder components.

 

Classes in javax.faces.component.behavior that implement Behavior
 class AjaxBehavior
          

An instance of this class is added as a ClientBehavior to a component using the ClientBehaviorHolder.addClientBehavior(java.lang.String, javax.faces.component.behavior.ClientBehavior) contract that components implement.

 class BehaviorBase
          

BehaviorBase is a convenience base class that provides a default implementation of the Behavior contract.

 class ClientBehaviorBase
          

ClientBehaviorBase is a convenience base class that implements the default concrete behavior of all methods defined by ClientBehavior.

 

Uses of Behavior in javax.faces.event
 

Methods in javax.faces.event that return Behavior
 Behavior BehaviorEvent.getBehavior()
          

Return the source Behavior that sent this event.

 Behavior BehaviorEvent.getBehavior()
          

Return the source Behavior that sent this event.

 

Constructors in javax.faces.event with parameters of type Behavior
AjaxBehaviorEvent(UIComponent component, Behavior behavior)
          

Construct a new event object from the specified source component and Ajax behavior.

AjaxBehaviorEvent(UIComponent component, Behavior behavior)
          

Construct a new event object from the specified source component and Ajax behavior.

BehaviorEvent(UIComponent component, Behavior behavior)
          

Construct a new event object from the specified source component and behavior.

BehaviorEvent(UIComponent component, Behavior behavior)
          

Construct a new event object from the specified source component and behavior.

 



Copyright 2002-2011 Oracle America Inc, Inc. All Rights Reserved.