Package org.apache.myfaces.trinidadinternal.agent.parse

Examples of org.apache.myfaces.trinidadinternal.agent.parse.NameVersion$VersionEntry


    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 org.apache.myfaces.trinidadinternal.agent.parse.NameVersion$VersionEntry

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.