javax.media.protocol.Positionable 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 javax.media.protocol;
import javax.media.*;
/**
* Standard JMF class -- see this class in the JMF Javadoc.
*
* Complete.
*
* @author Ken Larson
*
*/
public interface Positionable
{
public static final int RoundUp = 1;
public static final int RoundDown = 2;
public static final int RoundNearest = 3;
public boolean isRandomAccess();
public Time setPosition(Time where, int rounding);
}