Uses of Interface
jakarta.faces.component.behavior.ClientBehavior
-
Packages that use ClientBehavior Package Description jakarta.faces.component jakarta.faces.component.behavior jakarta.faces.render -
-
Uses of ClientBehavior in jakarta.faces.component
Methods in jakarta.faces.component that return types with arguments of type ClientBehavior Modifier and Type Method Description Map<String,List<ClientBehavior>>
UIComponentBase. getClientBehaviors()
This is a default implementation ofClientBehaviorHolder.getClientBehaviors()
.Methods in jakarta.faces.component with parameters of type ClientBehavior Modifier and Type Method Description void
UIComponentBase. addClientBehavior(String eventName, ClientBehavior behavior)
This is a default implementation ofClientBehaviorHolder.addClientBehavior(java.lang.String, jakarta.faces.component.behavior.ClientBehavior)
. -
Uses of ClientBehavior in jakarta.faces.component.behavior
Classes in jakarta.faces.component.behavior that implement ClientBehavior Modifier and Type Class Description class
AjaxBehavior
An instance of this class is added as aClientBehavior
to a component using theClientBehaviorHolder.addClientBehavior(java.lang.String, jakarta.faces.component.behavior.ClientBehavior)
contract that components implement.class
ClientBehaviorBase
ClientBehaviorBase is a convenience base class that implements the default concrete behavior of all methods defined byClientBehavior
.Methods in jakarta.faces.component.behavior that return types with arguments of type ClientBehavior Modifier and Type Method Description Map<String,List<ClientBehavior>>
ClientBehaviorHolder. getClientBehaviors()
Returns a non-null, unmodifiableMap
that contains the theClientBehavior
s that have been attached to the component implementing this interface.Methods in jakarta.faces.component.behavior with parameters of type ClientBehavior Modifier and Type Method Description void
ClientBehaviorHolder. addClientBehavior(String eventName, ClientBehavior behavior)
Attaches aClientBehavior
to the component implementing this interface for the specified event. -
Uses of ClientBehavior in jakarta.faces.render
Methods in jakarta.faces.render with parameters of type ClientBehavior Modifier and Type Method Description void
ClientBehaviorRenderer. decode(FacesContext context, UIComponent component, ClientBehavior behavior)
Decode any new state of thisClientBehavior
from the request contained in the specifiedFacesContext
.String
ClientBehaviorRenderer. getScript(ClientBehaviorContext behaviorContext, ClientBehavior behavior)
Return the script that implements this ClientBehavior's client-side logic.
-