Package org.jampa.model.library

Examples of org.jampa.model.library.Library


    _dndController = new DNDController();
    _downloadController = new DownloadController();
    _radioController = new RadioController();
   
    Log.getInstance(Controller.class).debug("Initializing Library."); //$NON-NLS-1$
    _library = new Library();
   
    getEventController().addAudioItemChangeListener(this);
    getEventController().addPodcastsUpdateChangeListener(this);
    getEventController().addRadioChangeListeners(this);
  }
View Full Code Here


      Log.getInstance(Controller.class).error(e.getMessage());     
    }
    getHSQLController().doCommitDatabase();
   
    // HSQL updated, _library does not correspond anymore.
    _library = new Library();
   
    getEventController().fireLibraryChange(EventConstants.EVT_LIBRARY_SCAN_CHANGE, null, null);
    // Force reload of AudioItem's, and notify openned playlists to refresh.
    getPlaylistController().invalidateAllLoadedTags();
   
View Full Code Here

      Log.getInstance(Controller.class).error(e.getMessage());     
    }
    getHSQLController().doCommitDatabase();

    // HSQL updated, _library does not correspond anymore.
    _library = new Library();
   
    getEventController().fireLibraryChange(EventConstants.EVT_LIBRARY_SCAN_CHANGE, null, null);
   
    getStatusLineManager().setMessage(Messages.getString("Controller.EndLibraryUpdate"));
   
View Full Code Here

    }
  }
 
  public void notifyMetadataChange() {
    // HSQL updated, _library does not correspond anymore.
    _library = new Library();
    getEventController().fireLibraryChange(EventConstants.EVT_LIBRARY_SCAN_CHANGE, null, null);
  }
View Full Code Here

TOP

Related Classes of org.jampa.model.library.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.