Package controller.threads

Examples of controller.threads.PlaylistRowReorderer


    if (fromIndex+1==toIndex) {
      return; //kein echtes verschieben...
    }
    if (playlistID!=-1) {//falls playlist-lib
      //sortieren in der db anstoßen
      Thread reorderInDB = new Thread(new PlaylistRowReorderer(getTrackCount(), playlistID, fromIndex, toIndex));
      reorderInDB.start();
    }
   
    //und in der liste sortieren
    Track fromTrack = tracks.get(fromIndex);
View Full Code Here

TOP

Related Classes of controller.threads.PlaylistRowReorderer

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.