Package ncrossley.itunes

Examples of ncrossley.itunes.Library


  private static Library getITunesLibrary()
  {
    File libraryFile = ITunesUtils.getITunesLibrary();
    if(libraryFile != null)
    {
      Library library = new Library(libraryFile);
      return library;
    }
    return null;
  }
View Full Code Here


    return null;
  }
 
  public static Collection<Playlist> getITunesPlaylists()
  {
    Library library = getITunesLibrary();
    if(library == null)
    {
      return null;
    }
    Collection<Playlist> playlists = library.getPlaylists();
    return playlists;
  }
View Full Code Here

TOP

Related Classes of ncrossley.itunes.Library

Copyright © 2018 www.massapicom. 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.