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.

33 lines
613 B

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;
}
}