Package api.torrents

Examples of api.torrents.ReleaseType


          releases.put(ReleaseType.UNKNOWN, new TreeSet<TorrentGroup>());
        }
        releases.get(ReleaseType.UNKNOWN).add(group);
      }
      else {
        ReleaseType appearance = group.getExtendedArtists().getAppearance(artist.getId());
        if (appearance == ReleaseType.ARTIST || appearance == ReleaseType.DJ){
          ReleaseType type = group.getReleaseType();
          if (!releases.containsKey(type)){
            releases.put(type, new TreeSet<TorrentGroup>());
          }
          releases.get(type).add(group);
        }
View Full Code Here

TOP

Related Classes of api.torrents.ReleaseType

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.