Project for Continous Integration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
489 B

package device;
public interface Device {
void louder();
void quieter();
int getVolume();
void next();
void prev();
String play();
//get deviceName, Album and current Item
String getInfoText();
//get a list of public methods
String[] getOptions();
//get an Item of the Album
String chooseItem(int itemNr);
// get the actual album
String[] getItemList();
//mute the Volume and returns an Info.
String mute();
//unmute the Volume and returns an Info.
String unmute();
}