Uses of Interface
jakarta.faces.component.behavior.Behavior
-
Packages that use Behavior Package Description com.sun.faces.application com.sun.faces.application.annotation com.sun.faces.application.applicationimpl com.sun.faces.cdi com.sun.faces.facelets.tag.composite jakarta.faces.application APIs that are used to link an application's business logic objects to Jakarta Faces, as well as convenient pluggable mechanisms to manage the execution of an application that is based on Jakarta Faces.jakarta.faces.component.behavior APIs for attaching additional behavior to user interface components.jakarta.faces.event Interfaces describing events and event listeners, and concrete event implementation classes. -
-
Uses of Behavior in com.sun.faces.application
Methods in com.sun.faces.application that return Behavior Modifier and Type Method Description BehaviorApplicationImpl. createBehavior(String behaviorId) -
Uses of Behavior in com.sun.faces.application.annotation
Methods in com.sun.faces.application.annotation with parameters of type Behavior Modifier and Type Method Description voidAnnotationManager. applyBehaviorAnnotations(FacesContext ctx, Behavior b)Apply annotations relevant toBehaviorinstances. -
Uses of Behavior in com.sun.faces.application.applicationimpl
Methods in com.sun.faces.application.applicationimpl that return Behavior Modifier and Type Method Description BehaviorInstanceFactory. createBehavior(String behaviorId) -
Uses of Behavior in com.sun.faces.cdi
Methods in com.sun.faces.cdi that return Behavior Modifier and Type Method Description static BehaviorCdiUtils. createBehavior(jakarta.enterprise.inject.spi.BeanManager beanManager, String value)Create a behavior using the FacesBehavior value attribute. -
Uses of Behavior in com.sun.faces.facelets.tag.composite
Classes in com.sun.faces.facelets.tag.composite that implement Behavior Modifier and Type Class Description classRetargetedAjaxBehaviorBasically represents<f:ajax>which is retargeted by<cc:clientBehavior>inAjaxHandlerand checked inAjaxBehaviorRenderer. -
Uses of Behavior in jakarta.faces.application
Methods in jakarta.faces.application that return Behavior Modifier and Type Method Description BehaviorApplication. createBehavior(String behaviorId)Instantiate and return a newBehaviorinstance of the class specified by a previous call toaddBehavior()for the specified behavior id.BehaviorApplicationWrapper. createBehavior(String behaviorId)The default behavior of this method is to callApplication.createBehavior(String)on the wrappedApplicationobject. -
Uses of Behavior in jakarta.faces.component.behavior
Subinterfaces of Behavior in jakarta.faces.component.behavior Modifier and Type Interface Description interfaceClientBehaviorClientBehavior is the base contract forBehaviors that attach script content to client-side events exposed byClientBehaviorHoldercomponents.Classes in jakarta.faces.component.behavior that implement Behavior Modifier and Type Class Description classAjaxBehaviorAn instance of this class is added as aClientBehaviorto a component using theClientBehaviorHolder.addClientBehavior(java.lang.String, jakarta.faces.component.behavior.ClientBehavior)contract that components implement.classBehaviorBaseBehaviorBase is a convenience base class that provides a default implementation of theBehaviorcontract.classClientBehaviorBaseClientBehaviorBase is a convenience base class that implements the default concrete behavior of all methods defined byClientBehavior. -
Uses of Behavior in jakarta.faces.event
Methods in jakarta.faces.event that return Behavior Modifier and Type Method Description BehaviorBehaviorEvent. getBehavior()Return the sourceBehaviorthat sent this event.Constructors in jakarta.faces.event with parameters of type Behavior Constructor Description AjaxBehaviorEvent(UIComponent component, Behavior behavior)Construct a new event object from the specified source component and Ajax behavior.AjaxBehaviorEvent(FacesContext facesContext, UIComponent component, Behavior behavior)Construct a new event object from the Faces context, specified source component and Ajax behavior.BehaviorEvent(UIComponent component, Behavior behavior)Construct a new event object from the specified source component andbehavior.BehaviorEvent(FacesContext facesContext, UIComponent component, Behavior behavior)Construct a new event object from the Faces context, specified source component and behavior.
-