parent
ed610ebdae
commit
367f2b93de
@ -0,0 +1,67 @@ |
|||||||
|
/* |
||||||
|
* To change this license header, choose License Headers in Project Properties. |
||||||
|
* To change this template file, choose Tools | Templates |
||||||
|
* and open the template in the editor. |
||||||
|
*/ |
||||||
|
package moe.nekojimi.chords; |
||||||
|
|
||||||
|
import java.io.File; |
||||||
|
import java.net.URL; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* @author jimj316 |
||||||
|
*/ |
||||||
|
public class Song |
||||||
|
{ |
||||||
|
private String title; |
||||||
|
private String artist; |
||||||
|
private final URL url; |
||||||
|
private File location = null; |
||||||
|
|
||||||
|
public Song(URL url) |
||||||
|
{ |
||||||
|
this.url = url; |
||||||
|
} |
||||||
|
|
||||||
|
public String getTitle() |
||||||
|
{ |
||||||
|
return title; |
||||||
|
} |
||||||
|
|
||||||
|
public void setTitle(String title) |
||||||
|
{ |
||||||
|
this.title = title; |
||||||
|
} |
||||||
|
|
||||||
|
public String getArtist() |
||||||
|
{ |
||||||
|
return artist; |
||||||
|
} |
||||||
|
|
||||||
|
public void setArtist(String artist) |
||||||
|
{ |
||||||
|
this.artist = artist; |
||||||
|
} |
||||||
|
|
||||||
|
public URL getUrl() |
||||||
|
{ |
||||||
|
return url; |
||||||
|
} |
||||||
|
|
||||||
|
public File getLocation() |
||||||
|
{ |
||||||
|
return location; |
||||||
|
} |
||||||
|
|
||||||
|
public void setLocation(File location) |
||||||
|
{ |
||||||
|
this.location = location; |
||||||
|
} |
||||||
|
|
||||||
|
void delete() |
||||||
|
{ |
||||||
|
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
|
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue