Skip to content

Instantly share code, notes, and snippets.

@jeremiemartinez
Last active December 25, 2015 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremiemartinez/7004347 to your computer and use it in GitHub Desktop.
Save jeremiemartinez/7004347 to your computer and use it in GitHub Desktop.
public class Music {
private String cover;
private File audio;
public Music(String cover, File audio) {
this.cover = cover;
this.audio = audio;
}
public String getCover() {
return cover;
}
public void setCover(String cover) {
this.cover = cover;
}
public File getAudio() {
return audio;
}
public void setAudio(File audio) {
this.audio = audio;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment