-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSongInformation.java
63 lines (49 loc) · 1.46 KB
/
SongInformation.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
public class SongInformation {
private String songTitle;
private int releaseYear;
private int rating;
private Author author;
SongInformation(String songTitle, int releaseYear, int rating, Author author) {
this.songTitle = songTitle;
this.releaseYear = releaseYear;
this.rating = rating;
this.author = author;
}
public SongInformation(Object ana, int releaseYear, int rating, Object d) {
}
public String getSongTitle() {
return songTitle;
}
public void setSongTitle(String songTitle) {
this.songTitle = songTitle;
}
public int getReleaseYear() {
return releaseYear;
}
public void setReleaseYear(int releaseYear) {
this.releaseYear = releaseYear;
}
public int getRating() {
return rating;
}
public void setRating(int rating) {
this.rating = rating;
}
public Author getAuthor() {
return author;
}
public void setAuthor(Author author) {
this.author = author;
}
public void addInformation(SongInformation songInformation){
}
@Override
public String toString() {
return "SongInformation{" +
"songTitle='" + songTitle + '\'' +
", releaseYear=" + releaseYear +
", rating=" + rating +
", author='" + author + '\'' +
'}';
}
}