Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package pl.pszemke.innerClass;
  2.  
  3. public class Song {
  4. private String title;
  5. private double duration;
  6.  
  7. public Song(String title, double duration) {
  8. this.title = title;
  9. this.duration = duration;
  10. }
  11.  
  12. public String getTitle() {
  13. return title;
  14. }
  15.  
  16. @Override
  17. public String toString() {
  18. return this.title + " : " + this.duration;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement