Package net.pms.external.xbmc.folders

Examples of net.pms.external.xbmc.folders.ListFiles


    } else {
      albums = dao.getAlbums();
    }

    for (final Integer albumId : albums.keySet()) {
      addChild(new ListFiles(albums.get(albumId)) {
        @Override
        public List<RealFile> getList() {
          List<SongInfo> songs = dao.getTracksByAlbum(albumId);
          List<RealFile> songFiles = new ArrayList<RealFile>();
          for (SongInfo songInfo : songs) {
View Full Code Here

TOP

Related Classes of net.pms.external.xbmc.folders.ListFiles

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.