class WrapperEvent extends FacesEvent
| Modifier and Type | Field and Description |
|---|---|
private FacesEvent |
event |
private int |
rowIndex |
| Constructor and Description |
|---|
WrapperEvent(UIComponent component,
FacesEvent event,
int rowIndex) |
| Modifier and Type | Method and Description |
|---|---|
FacesEvent |
getFacesEvent() |
PhaseId |
getPhaseId()
Return the identifier of the request processing phase during
which this event should be delivered.
|
int |
getRowIndex() |
boolean |
isAppropriateListener(FacesListener listener)
Return
true if this FacesListener is an instance
of a listener class that this event supports. |
void |
processListener(FacesListener listener)
Broadcast this
FacesEvent to the specified
FacesListener, by whatever mechanism is appropriate. |
void |
setPhaseId(PhaseId phaseId)
Set the
PhaseId during which this event will be
delivered. |
getComponent, queueprivate FacesEvent event
private int rowIndex
public WrapperEvent(UIComponent component, FacesEvent event, int rowIndex)
public FacesEvent getFacesEvent()
public int getRowIndex()
public PhaseId getPhaseId()
FacesEventReturn the identifier of the request processing phase during
which this event should be delivered. Legal values are the
singleton instances defined by the PhaseId class,
including PhaseId.ANY_PHASE, which is the default
value.
getPhaseId in class FacesEventpublic void setPhaseId(PhaseId phaseId)
FacesEventSet the PhaseId during which this event will be
delivered.
setPhaseId in class FacesEventpublic boolean isAppropriateListener(FacesListener listener)
FacesEventReturn true if this FacesListener is an instance
of a listener class that this event supports. Typically, this will be
accomplished by an "instanceof" check on the listener class.
isAppropriateListener in class FacesEventlistener - FacesListener to evaluatepublic void processListener(FacesListener listener)
FacesEventBroadcast this FacesEvent to the specified
FacesListener, by whatever mechanism is appropriate. Typically,
this will be accomplished by calling an event processing method, and
passing this FacesEvent as a paramter.
processListener in class FacesEventlistener - FacesListener to send this FacesEvent to