javax.media
Class ConfigureCompleteEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--javax.media.MediaEvent
              |
              +--javax.media.ControllerEvent
                    |
                    +--javax.media.TransitionEvent
                          |
                          +--javax.media.ConfigureCompleteEvent
All Implemented Interfaces:
java.io.Serializable

public class ConfigureCompleteEvent
extends TransitionEvent

A ConfigureCompleteEvent is posted when a Processor finishes Configuring. This occurs when a Processor moves from the Configuring state to the Configured state, or as an acknowledgement that the configure method was called and the Processor is already Configured.

Since:
JMF 2.0
Version:
1.6, 98/08/11.
See Also:
Processor, ControllerListener, TransitionEvent, Serialized Form

Field Summary
 
Fields inherited from class javax.media.TransitionEvent
currentState, previousState, targetState
 
Fields inherited from class javax.media.ControllerEvent
eventSrc
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
ConfigureCompleteEvent(Controller processor, int previous, int current, int target)
          Construct a new ConfigureCompleteEvent.
 
Methods inherited from class javax.media.TransitionEvent
getCurrentState, getPreviousState, getTargetState, stateName, toString
 
Methods inherited from class javax.media.ControllerEvent
getSource, getSourceController
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConfigureCompleteEvent

public ConfigureCompleteEvent(Controller processor,
                              int previous,
                              int current,
                              int target)
Construct a new ConfigureCompleteEvent.

Parameters:
processor - The Processor that is generating this event.
previous - The state that the Processor was in before this event.
current - The state that the Processor is in as a result of this event.
target - The state that the Processor is heading to.