Package mmrnmhrm.core.compiler_installs

Examples of mmrnmhrm.core.compiler_installs.CommonInstallType$DeeLaunchingPlugin


  protected List<CommonInstallType> getDeeInstallTypes() {
    if(deeInstallTypes == null) {
      deeInstallTypes = new ArrayList<>();
      for (IInterpreterInstallType installType : ScriptRuntime.getInterpreterInstallTypes(DeeCore.NATURE_ID)) {
        if(installType instanceof CommonInstallType) {
          CommonInstallType commonInstallType = (CommonInstallType) installType;
          deeInstallTypes.add(commonInstallType);
        }
      }
    }
    return deeInstallTypes;
View Full Code Here

TOP

Related Classes of mmrnmhrm.core.compiler_installs.CommonInstallType$DeeLaunchingPlugin

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.