javax.microedition.media.control.VolumeControl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of midp-2.0-stub Show documentation
Show all versions of midp-2.0-stub Show documentation
Stub of the Mobile Information Device Profile v2.0
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);
}