StopEventpublic class StopEvent extends TransitionEvent StopEvent is a ControllerEvent that indicates that a Controller
has stopped. |
Fields Summary |
---|
private Time | mediaTime |
Constructors Summary |
---|
public StopEvent(Controller from, int previous, int current, int target, Time mediaTime)
super(from, previous, current, target);
this.mediaTime = mediaTime;
|
Methods Summary |
---|
public javax.media.Time | getMediaTime()Get the clock time (media time) that was passed into the constructor.
return mediaTime;
| public java.lang.String | toString()Returns the String representation of this event's values.
return getClass().getName() + "[source=" + eventSrc +
",previous=" + stateName(previousState) +
",current=" + stateName(currentState) +
",target=" + stateName(targetState) +
",mediaTime=" + mediaTime +
"]";
|
|