|
|
@ -7,6 +7,7 @@ public interface Device { |
|
|
|
int getVolume(); |
|
|
|
void next(); |
|
|
|
void prev(); |
|
|
|
String play(); |
|
|
|
//get deviceName, Album and current Item |
|
|
|
String getInfoText(); |
|
|
|
//get a list of public methods |
|
|
@ -15,6 +16,8 @@ public interface Device { |
|
|
|
String chooseItem(int itemNr); |
|
|
|
// get the actual album |
|
|
|
String[] getItemList(); |
|
|
|
String play(); |
|
|
|
|
|
|
|
//mute the Volume and returns an Info. |
|
|
|
String mute(); |
|
|
|
//unmute the Volume and returns an Info. |
|
|
|
String unmute(); |
|
|
|
} |