Package com.jitcaforwin.extended.api

Examples of com.jitcaforwin.extended.api.UserLibrary


  public static void main(String args[]){
    try {
      IJitcaITunesController iTunes = new JitcaiTunesController(true);
     
      UserLibrary library = iTunes.getLibrary();
     
      PlaylistFolder folder = library.createPlaylistFolder("Demo_Folder");
     
      UserPlaylist playlist = folder.createPlaylist("Demo_Playlist");
     
      playlist.addTrack(iTunes.getPlayerController().currentTrack());
View Full Code Here


  public static void main(String args[]){
    try {
      //BasicConfigurator.configure();
     
      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:");
View Full Code Here

public class TracksOfArtistDemo {

  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) {
View Full Code Here

TOP

Related Classes of com.jitcaforwin.extended.api.UserLibrary

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.