FileDocCategorySizeDatePackage
ConfigureCompleteEvent.javaAPI DocJMF 2.1.1e1302Mon May 12 12:20:38 BST 2003javax.media

ConfigureCompleteEvent

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.
see
Processor
see
ControllerListener
see
TransitionEvent
version
1.6, 98/08/11.
since
JMF 2.0

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

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

	super(processor, previous, current, target);
    
Methods Summary