javax.media.control.PortControl 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
The newest version!
package javax.media.control;
import javax.media.*;
/**
* Standard JMF class -- see this class in the JMF Javadoc. Complete.
*
* @author Ken Larson
*
*/
public interface PortControl extends Control
{
public static final int MICROPHONE = 1;
public static final int LINE_IN = 2;
public static final int SPEAKER = 4;
public static final int HEADPHONE = 8;
public static final int LINE_OUT = 16;
public static final int COMPACT_DISC = 32;
public static final int SVIDEO = 64;
public static final int COMPOSITE_VIDEO = 128;
public static final int TV_TUNER = 256;
public static final int COMPOSITE_VIDEO_2 = 512;
public int getPorts();
public int getSupportedPorts();
public int setPorts(int ports);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy