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

javax.microedition.media.control.VolumeControl Maven / Gradle / Ivy

The newest version!
package javax.microedition.media.control;

import javax.microedition.media.Control;

public interface VolumeControl extends Control {
    int getLevel();

    boolean isMuted();

    int setLevel(int level);

    void setMute(boolean mute);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy