Skip to content

Instantly share code, notes, and snippets.

@sharrissf
Created April 25, 2011 15:50
Show Gist options
  • Save sharrissf/940704 to your computer and use it in GitHub Desktop.
Save sharrissf/940704 to your computer and use it in GitHub Desktop.
public Collection getAllAlbumsBy(Artist artist){
List results = new ArrayList();
for(Iterator i = getAllAlbums();i.hasNext();){
Album album = (Album)i.next();
if(album.isBy(artist)){
results.add(album);
}
}
return results;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment