Package com.tagtraum.beatunes.library
Class Album
- java.lang.Object
-
- com.tagtraum.beatunes.library.Album
-
public class Album extends Object
Album.- Author:
- Hendrik Schreiber
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Album.Key
Key.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(AudioSong song)
String
getArtist()
Album.Key
getKey()
String
getName()
List<AudioSong>
getSongs()
boolean
shouldContain(AudioSong song)
Checks whether this album should contain a given song.String
toString()
-
-
-
Method Detail
-
add
public void add(AudioSong song)
- Parameters:
song
- song
-
shouldContain
public boolean shouldContain(AudioSong song)
Checks whether this album should contain a given song.- Parameters:
song
- song- Returns:
- true or false
-
getName
public String getName()
-
getArtist
public String getArtist()
-
getKey
public Album.Key getKey()
-
-