Uses of Class
javax.faces.event.PhaseId

Packages that use PhaseId
javax.faces.component Fundamental APIs for user interface components. 
javax.faces.context Classes and interfaces defining per-request state information. 
javax.faces.event Interfaces describing events and event listeners, and concrete event implementation classes. 
 

Uses of PhaseId in javax.faces.component
 

Methods in javax.faces.component that return PhaseId
 PhaseId UIViewRootTestCase.PhaseListenerBean.getPhaseId()
           
 PhaseId UIViewRootTestCase.PhaseListenerBean.getPhaseId()
           
 

Methods in javax.faces.component with parameters of type PhaseId
 void UIViewRoot.broadcastEvents(FacesContext context, PhaseId phaseId)
          

Broadcast any events that have been queued.

 void UIViewRoot.broadcastEvents(FacesContext context, PhaseId phaseId)
          

Broadcast any events that have been queued.

 void UIViewRootTestCase.doTestPhaseListenerWithPhaseId(UIViewRoot root, PhaseId phaseId)
           
 void UIViewRootTestCase.doTestPhaseListenerWithPhaseId(UIViewRoot root, PhaseId phaseId)
           
 void UIViewRootTestCase.doTestPhaseMethodExpressionAndListenerWithPhaseId(UIViewRoot root, PhaseId phaseId)
           
 void UIViewRootTestCase.doTestPhaseMethodExpressionAndListenerWithPhaseId(UIViewRoot root, PhaseId phaseId)
           
 void UIViewRootTestCase.doTestPhaseMethodExpressionWithPhaseId(UIViewRoot root, PhaseId phaseId)
           
 void UIViewRootTestCase.doTestPhaseMethodExpressionWithPhaseId(UIViewRoot root, PhaseId phaseId)
           
 

Constructors in javax.faces.component with parameters of type PhaseId
UIViewRootTestCase.PhaseListenerBean(PhaseId phaseId)
           
UIViewRootTestCase.PhaseListenerBean(PhaseId phaseId)
           
UIViewRootTestCase.PhaseListenerBean(PhaseId phaseId, boolean exceptionBefore, boolean exceptionAfter)
           
UIViewRootTestCase.PhaseListenerBean(PhaseId phaseId, boolean exceptionBefore, boolean exceptionAfter)
           
 

Uses of PhaseId in javax.faces.context
 

Methods in javax.faces.context that return PhaseId
 PhaseId FacesContext.getCurrentPhaseId()
          

Return the value last set on this FacesContext instance when FacesContext.setCurrentPhaseId(javax.faces.event.PhaseId) was called.

 PhaseId FacesContextWrapper.getCurrentPhaseId()
          The default behavior of this method is to call FacesContext.getCurrentPhaseId() on the wrapped FacesContext object.
 PhaseId FacesContextWrapper.getCurrentPhaseId()
          The default behavior of this method is to call FacesContext.getCurrentPhaseId() on the wrapped FacesContext object.
 PhaseId FacesContext.getCurrentPhaseId()
          

Return the value last set on this FacesContext instance when FacesContext.setCurrentPhaseId(javax.faces.event.PhaseId) was called.

 

Methods in javax.faces.context with parameters of type PhaseId
abstract  void PartialViewContext.processPartial(PhaseId phaseId)
          

Perform lifecycle processing on components during the indicated phaseId.

 void PartialViewContextWrapper.processPartial(PhaseId phaseId)
          The default behavior of this method is to call PartialViewContext.processPartial(PhaseId) on the wrapped PartialViewContext object.
 void PartialViewContextWrapper.processPartial(PhaseId phaseId)
          The default behavior of this method is to call PartialViewContext.processPartial(PhaseId) on the wrapped PartialViewContext object.
abstract  void PartialViewContext.processPartial(PhaseId phaseId)
          

Perform lifecycle processing on components during the indicated phaseId.

 void FacesContext.setCurrentPhaseId(PhaseId currentPhaseId)
          

The implementation must call this method at the earliest possble point in time after entering into a new phase in the request processing lifecycle.

 void FacesContextWrapper.setCurrentPhaseId(PhaseId currentPhaseId)
          The default behavior of this method is to call FacesContext.setCurrentPhaseId(PhaseId) on the wrapped FacesContext object.
 void FacesContextWrapper.setCurrentPhaseId(PhaseId currentPhaseId)
          The default behavior of this method is to call FacesContext.setCurrentPhaseId(PhaseId) on the wrapped FacesContext object.
 void FacesContext.setCurrentPhaseId(PhaseId currentPhaseId)
          

The implementation must call this method at the earliest possble point in time after entering into a new phase in the request processing lifecycle.

 

Uses of PhaseId in javax.faces.event
 

Fields in javax.faces.event declared as PhaseId
static PhaseId PhaseId.ANY_PHASE
          Identifier that indicates an interest in events, no matter which request processing phase is being performed.
static PhaseId PhaseId.ANY_PHASE
          Identifier that indicates an interest in events, no matter which request processing phase is being performed.
static PhaseId PhaseId.APPLY_REQUEST_VALUES
          Identifier that indicates an interest in events queued for the Apply Request Values phase of the request processing lifecycle.
static PhaseId PhaseId.APPLY_REQUEST_VALUES
          Identifier that indicates an interest in events queued for the Apply Request Values phase of the request processing lifecycle.
static PhaseId PhaseId.INVOKE_APPLICATION
          Identifier that indicates an interest in events queued for the Invoke Application phase of the request processing lifecycle.
static PhaseId PhaseId.INVOKE_APPLICATION
          Identifier that indicates an interest in events queued for the Invoke Application phase of the request processing lifecycle.
static PhaseId PhaseId.PROCESS_VALIDATIONS
          Identifier that indicates an interest in events queued for the Process Validations phase of the request processing lifecycle.
static PhaseId PhaseId.PROCESS_VALIDATIONS
          Identifier that indicates an interest in events queued for the Process Validations phase of the request processing lifecycle.
static PhaseId PhaseId.RENDER_RESPONSE
          Identifier for the Render Response phase of the request processing lifecycle.
static PhaseId PhaseId.RENDER_RESPONSE
          Identifier for the Render Response phase of the request processing lifecycle.
static PhaseId PhaseId.RESTORE_VIEW
          Identifier that indicates an interest in events queued for the Restore View phase of the request processing lifecycle.
static PhaseId PhaseId.RESTORE_VIEW
          Identifier that indicates an interest in events queued for the Restore View phase of the request processing lifecycle.
static PhaseId PhaseId.UPDATE_MODEL_VALUES
          Identifier that indicates an interest in events queued for the Update Model Values phase of the request processing lifecycle.
static PhaseId PhaseId.UPDATE_MODEL_VALUES
          Identifier that indicates an interest in events queued for the Update Model Values phase of the request processing lifecycle.
 

Fields in javax.faces.event with type parameters of type PhaseId
static java.util.List<PhaseId> PhaseId.VALUES
          List of valid PhaseId instances, in ascending order of their ordinal value.
static java.util.List<PhaseId> PhaseId.VALUES
          List of valid PhaseId instances, in ascending order of their ordinal value.
 

Methods in javax.faces.event that return PhaseId
 PhaseId ExceptionQueuedEventContext.getPhaseId()
          

Return the PhaseId which was being processed when the exception was thrown.

 PhaseId FacesEvent.getPhaseId()
          Return the identifier of the request processing phase during which this event should be delivered.
 PhaseId PhaseEvent.getPhaseId()
          Return the PhaseId representing the current request processing lifecycle phase.
 PhaseId PhaseListener.getPhaseId()
          Return the identifier of the request processing phase during which this listener is interested in processing PhaseEvent events.
 PhaseId PhaseListener.getPhaseId()
          Return the identifier of the request processing phase during which this listener is interested in processing PhaseEvent events.
 PhaseId PhaseEvent.getPhaseId()
          Return the PhaseId representing the current request processing lifecycle phase.
 PhaseId FacesEvent.getPhaseId()
          Return the identifier of the request processing phase during which this event should be delivered.
 PhaseId ExceptionQueuedEventContext.getPhaseId()
          

Return the PhaseId which was being processed when the exception was thrown.

 

Methods in javax.faces.event with parameters of type PhaseId
 void FacesEvent.setPhaseId(PhaseId phaseId)
          Set the PhaseId during which this event will be delivered.
 void FacesEvent.setPhaseId(PhaseId phaseId)
          Set the PhaseId during which this event will be delivered.
 

Constructors in javax.faces.event with parameters of type PhaseId
ExceptionQueuedEventContext(FacesContext context, java.lang.Throwable thrown, UIComponent component, PhaseId phaseId)
          

Instantiate a new ExceptionQueuedEventContext that indicates the argument Throwable just occurred, relevant to the argument component, during the lifecycle phase phaseId.

ExceptionQueuedEventContext(FacesContext context, java.lang.Throwable thrown, UIComponent component, PhaseId phaseId)
          

Instantiate a new ExceptionQueuedEventContext that indicates the argument Throwable just occurred, relevant to the argument component, during the lifecycle phase phaseId.

PhaseEvent(FacesContext context, PhaseId phaseId, Lifecycle lifecycle)
          Construct a new event object from the specified parameters.
PhaseEvent(FacesContext context, PhaseId phaseId, Lifecycle lifecycle)
          Construct a new event object from the specified parameters.
 



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