Advertisement
duc-phan

Untitled

Dec 4th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. /**
  2.  *
  3.  * @param title The title of the CD
  4.  * @param author The author of the CD
  5.  * @param tracks The number of tracks on the CD
  6.  * @param durationInMinutes The duration of the CD in minutes
  7.  */
  8. public void addCD(String title, String author, int tracks, int durationInMinutes) {
  9.     CD cd = new CD();
  10.     cd.title = title;
  11.     cd.author = author;
  12.     cd.tracks = tracks;
  13.     cd.duration = duration;
  14.     cdList.add(cd);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement