net.sf.fmj.media.SeekFailedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fmj Show documentation
Show all versions of fmj Show documentation
Freedom for Media in Java
package net.sf.fmj.media;
import javax.media.*;
/**
* A SeekFailedEvent indicates that the Controller could not
* start at the current media time (set using setMediaTime).
*/
public class SeekFailedEvent extends StopEvent
{
public SeekFailedEvent(Controller from, int previous, int current,
int target, Time mediaTime)
{
super(from, previous, current, target, mediaTime);
}
}