Making a music program
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package sbu.javafx;
|
||||
|
||||
public class Song {
|
||||
private String title;
|
||||
private String artist;
|
||||
private String duration;
|
||||
|
||||
public Song (String title, String artist, String duration){
|
||||
this.title = title;
|
||||
this.artist = artist;
|
||||
this.duration = duration;
|
||||
}
|
||||
|
||||
public String getTitle () { return title;}
|
||||
public String getArtist () { return artist;}
|
||||
public String getDuration () { return duration;}
|
||||
}
|
||||
Reference in New Issue
Block a user