All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.media.GainControl Maven / Gradle / Ivy

The newest version!
package javax.media;

/**
 * Standard JMF class -- see this class in the JMF Javadoc. Complete.
 *
 * @author Ken Larson
 *
 */
public interface GainControl extends Control
{
    public void addGainChangeListener(GainChangeListener listener);

    public float getDB();

    public float getLevel();

    public boolean getMute();

    public void removeGainChangeListener(GainChangeListener listener);

    public float setDB(float gain);

    public float setLevel(float level);

    public void setMute(boolean mute);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy