Back to project page Hungry-Mouse.
The source code is released under:
MIT License
If you think the Android project Hungry-Mouse listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
//Name: Music.java //Purpose: provide the interface to control audio files /* w w w .j a v a2 s . c o m*/ package com.hungry.mouse.framework; public interface Music { public void play(); public void stop(); public void pause(); public boolean isPlaying(); public boolean isStopped(); public boolean isLooping(); //setters// public void setLooping(boolean looping); public void setVolume(float volume); //close system resource when is no more needed public void dispose(); void seekBegin(); }