Develop #1

Merged
Sadra3st merged 9 commits from develop into main 2026-06-10 05:23:24 +00:00
Showing only changes of commit e51de99ebe - Show all commits
+38
View File
@@ -1,4 +1,42 @@
package sbu.javafx;
public class Song {
private String Title;
private String ArtistName;
private String Duration;
private boolean added;
private String FilePath;
public Song(String title, String artistName, String duration, String filePath) {
this.Title = title;
this.ArtistName = artistName;
this.Duration = duration;
this.added = false;
this.FilePath = filePath;
}
public String getTitle() {
return Title;
}
public String getArtistName() {
return ArtistName;
}
public String getDuration() {
return Duration;
}
public boolean isAdded() {
return added;
}
public void setAdded(boolean added) {
this.added = added;
}
public String getFilePath() {
return FilePath;
}
}