@ -37,10 +37,11 @@ public class CDPlayer implements Device {
}
@Override
public void chooseOption(String opt) {
public String[] getItemList() {
return new String[0];
public String play() {
return null;
@ -8,8 +8,11 @@ public interface Device {
void next();
void prev();
String getInfoText();
//returns an array with Method-Names to bee listed
String[] getOptions();
void chooseOption(String opt);
//returns an array with contents to bee played
String[] getItemList();
String play();
@ -54,10 +54,11 @@ public class RadioPlayer implements Device {
@ -58,10 +58,11 @@ public class UsbPlayer implements Device {