add canzone.java

This commit is contained in:
orange 2016-12-23 12:49:18 +01:00
parent bac55784ce
commit dc6b10a3cb
1 changed files with 18 additions and 0 deletions

18
src/Radio/Canzone.java Normal file
View File

@ -0,0 +1,18 @@
public class Canzone{
public String getTitolo(){
return titolo;
}
public String getAutore(){
return autore;
}
public String getAulbum(){
return album;
}
private String titolo;
private String autore;
private String album;
}