Package com.prupe.mcpatcher

Examples of com.prupe.mcpatcher.Config$ProfileEntry


    return this.selectedProfile;
  }

  Config$ProfileEntry getSelectedProfile() {
    Config$ProfileEntry profile = (Config$ProfileEntry)this.profiles.get(this.getSelectedProfileName());

    if (profile == null) {
      profile = new Config$ProfileEntry();
      this.profiles.put(this.selectedProfile, profile);
    }

    return profile;
  }
View Full Code Here


    return profile;
  }

  Config$VersionEntry getSelectedVersion() {
    Config$ProfileEntry profile = this.getSelectedProfile();
    Config$VersionEntry version = (Config$VersionEntry)profile.versions.get(profile.version);

    if (version == null) {
      version = new Config$VersionEntry();
      profile.versions.put(profile.version, version);
View Full Code Here

  Map<String, String> getPatchedVersionMap() {
    HashMap map = new HashMap();
    Iterator i$ = this.profiles.values().iterator();

    while (i$.hasNext()) {
      Config$ProfileEntry profile = (Config$ProfileEntry)i$.next();
      profile.versions.remove((Object)null);
      profile.versions.remove("");
      Iterator i$1 = profile.versions.entrySet().iterator();

      while (i$1.hasNext()) {
View Full Code Here

    return profile;
  }

  Config$VersionEntry getSelectedVersion() {
    Config$ProfileEntry profile = this.getSelectedProfile();
    Config$VersionEntry version = (Config$VersionEntry)profile.versions.get(profile.version);

    if (version == null) {
      version = new Config$VersionEntry();
      profile.versions.put(profile.version, version);
    }

    return version;
  }
View Full Code Here

TOP

Related Classes of com.prupe.mcpatcher.Config$ProfileEntry

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.