Package com.jitcaforwin.extended.api.artist

Examples of com.jitcaforwin.extended.api.artist.Artist.loadAllTracks()


    // special case treatments
    Artist artist = ArtistImpl.create(name, this.source);

    this.artists.put(name, artist);
    if (!this.lazy) {
      artist.loadAllTracks();
    }

    return artist;
  }
 
View Full Code Here


    // special case treatments
    Artist artist = ArtistImpl.create(name, this.source);

    this.artists.put(name, artist);
    if (!this.lazy) {
      artist.loadAllTracks();
    }

    return artist;
  }
 
View Full Code Here

  public static void main(String args[]) {
    IJitcaITunesController iTunes = new JitcaiTunesController(true);
    UserLibrary library = iTunes.getLibrary();

    Artist michaelJackson = library.getArtist("Michael Jackson");
    michaelJackson.loadAllTracks();
    TrackCollection tracks = michaelJackson.getTracks();

    System.out.println("The following tracks of \"" + michaelJackson.getName() + "\" are in your library:");
    for (Track track : tracks) {
      System.out.println("\"" + track.getTitle() + "\" (" + track.getAlbum() + ")");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.