javax.media
类 ConfigureCompleteEvent

java.lang.Object
  继承者 java.util.EventObject
      继承者 javax.media.MediaEvent
          继承者 javax.media.ControllerEvent
              继承者 javax.media.TransitionEvent
                  继承者 javax.media.ConfigureCompleteEvent
所有已实现的接口:
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.

从以下版本开始:
JMF 2.0
另请参见:
Processor, ControllerListener, TransitionEvent, 序列化表格

字段摘要
 
从类 java.util.EventObject 继承的字段
source
 
构造方法摘要
ConfigureCompleteEvent(Controller processor, int previous, int current, int target)
          Construct a new ConfigureCompleteEvent.
 
方法摘要
 
从类 javax.media.TransitionEvent 继承的方法
getCurrentState, getPreviousState, getTargetState, toString
 
从类 javax.media.ControllerEvent 继承的方法
getSource, getSourceController
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

ConfigureCompleteEvent

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

参数:
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.