Package org.osmorc.settings

Examples of org.osmorc.settings.ProjectSettings


        }
        else {
          return nullSafeLocation;
        }
      case OsgiOutputPath:
        ProjectSettings projectSettings = ModuleServiceManager.getService(myFacet.getModule(), ProjectSettings.class);
        String bundlesOutputPath = projectSettings.getBundlesOutputPath();
        if (bundlesOutputPath != null && bundlesOutputPath.trim().length() != 0) {
          return bundlesOutputPath + "/" + nullSafeLocation;
        }
        else {
          return ProjectSettings.getDefaultBundlesOutputPath(myFacet.getModule().getProject()) + "/" + nullSafeLocation;
View Full Code Here


  @NotNull
  public String getManifestLocation() {
    if (getConfiguration().isUseProjectDefaultManifestFileLocation()) {

      final ProjectSettings projectSettings = ModuleServiceManager.getService(getModule(), ProjectSettings.class);
      return projectSettings.getDefaultManifestFileLocation();
    }
    else {
      return getConfiguration().getManifestLocation();
    }
  }
View Full Code Here

    if (StringUtil.isEmpty(configuration.getJarFileLocation())) {
      String jarFileName = module.getName().replaceAll("[\\s]", "_") + ".jar";

      // by default put stuff into the compiler output path.
      OutputPathType outputPathType = OutputPathType.CompilerOutputPath;
      ProjectSettings projectSettings = ProjectSettings.getInstance(module.getProject());
      if (projectSettings != null) {
        String bundlesOutputPath = projectSettings.getBundlesOutputPath();
        if (StringUtil.isNotEmpty(bundlesOutputPath)) {
          outputPathType = OutputPathType.OsgiOutputPath;
        }
      }
View Full Code Here

TOP

Related Classes of org.osmorc.settings.ProjectSettings

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.