Uses of Class
jakarta.faces.event.FacesEvent
-
Packages that use FacesEvent Package Description jakarta.faces.component jakarta.faces.event -
-
Uses of FacesEvent in jakarta.faces.component
Methods in jakarta.faces.component with parameters of type FacesEvent Modifier and Type Method Description void
UICommand. broadcast(FacesEvent event)
In addition to to the defaultUIComponent.broadcast(jakarta.faces.event.FacesEvent)
processing, pass theActionEvent
being broadcast to the method referenced byactionListener
(if any), and to the defaultActionListener
registered on theApplication
.abstract void
UIComponent. broadcast(FacesEvent event)
Broadcast the specifiedFacesEvent
to all registered event listeners who have expressed an interest in events of this type.void
UIComponentBase. broadcast(FacesEvent event)
void
UIData. broadcast(FacesEvent event)
Override the defaultUIComponentBase.broadcast(jakarta.faces.event.FacesEvent)
processing to unwrap any wrappedFacesEvent
and reset the current row index, before the event is actually broadcast.void
UIViewAction. broadcast(FacesEvent event)
Enable the method invocation specified by this component instance to return a value that performs navigation, similar in spirit toUICommand.broadcast(jakarta.faces.event.FacesEvent)
.void
UICommand. queueEvent(FacesEvent event)
InterceptqueueEvent
and take the following action.abstract void
UIComponent. queueEvent(FacesEvent event)
Queue an event for broadcast at the end of the current request processing lifecycle phase.void
UIComponentBase. queueEvent(FacesEvent event)
void
UIData. queueEvent(FacesEvent event)
Override the defaultUIComponentBase.queueEvent(jakarta.faces.event.FacesEvent)
processing to wrap any queued events in a wrapper so that we can reset the current row index inbroadcast()
.void
UIViewRoot. queueEvent(FacesEvent event)
Override the defaultUIComponentBase.queueEvent(jakarta.faces.event.FacesEvent)
behavior to accumulate the queued events for later broadcasting. -
Uses of FacesEvent in jakarta.faces.event
Subclasses of FacesEvent in jakarta.faces.event Modifier and Type Class Description class
ActionEvent
AnActionEvent
represents the activation of a user interface component (such as aUICommand
).class
AjaxBehaviorEvent
AjaxBehaviorEvent represents the component behavior specific toAjax
).class
BehaviorEvent
BehaviorEvent is the event that can be generated from componentBehavior
.class
ValueChangeEvent
AValueChangeEvent
is a notification that the local value of the source component has been change as a result of user interface activity.
-