Update + added the table

feest
This commit is contained in:
Wesley
2015-02-23 15:57:26 +01:00
parent 5b803a2cc4
commit e342d95bfe
8 changed files with 484 additions and 1 deletions
+25 -1
View File
@@ -1,4 +1,28 @@
public class Artist {
private String name;
private String genre;
private String image;
private String description;
public Artist(String name, String genre, String image, String description) {
this.setName(name);
this.genre = genre;
this.image = image;
this.description = description;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}