package device.cdPlayer; public class CD { private String format; private String[] playList; public CD() {} public CD(String format) { this.format = format; } public CD(String format, String[] playList) { this.format = format; this.playList = playList; } public String getFormat() { return format; } public void setFormat(String format) { this.format = format; } public String[] getPlayList() { return playList; } public void setPlayList(String[] playList) { this.playList = playList; } }