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

  1. package device.cdPlayer;
  2. public class CD {
  3. private String format;
  4. private String[] playList;
  5. public CD() {}
  6. public CD(String format) {
  7. this.format = format;
  8. }
  9. public CD(String format, String[] playList) {
  10. this.format = format;
  11. this.playList = playList;
  12. }
  13. public String getFormat() {
  14. return format;
  15. }
  16. public void setFormat(String format) {
  17. this.format = format;
  18. }
  19. public String[] getPlayList() {
  20. return playList;
  21. }
  22. public void setPlayList(String[] playList) {
  23. this.playList = playList;
  24. }
  25. }