Examples of ProjectSettings


Examples of com.googlecode.cssxfire.ProjectSettings

    }

    @Override
    public boolean isSelected(AnActionEvent e)
    {
        ProjectSettings projectSettings = getProjectSettings(e);
        return projectSettings != null && projectSettings.isAutoExpand();
    }
View Full Code Here

Examples of com.googlecode.cssxfire.ProjectSettings

    }

    @Override
    public void setSelected(AnActionEvent e, boolean state)
    {
        ProjectSettings projectSettings = getProjectSettings(e);
        if (projectSettings != null)
        {
            projectSettings.setAutoExpand(state);
        }
    }
View Full Code Here

Examples of com.greentea.relaxation.jnmf.gui.components.project.ProjectSettings

         try
         {
            in = new FileInputStream(file);
            ObjectInputStream ois = new ObjectInputStream(in);

            ProjectSettings settings = (ProjectSettings) ois.readObject();

            project = createNewProject(createUniqueProjectName(file.getName()));

            project.applySettings(settings);
            project.unlockProject();
View Full Code Here

Examples of com.greentea.relaxation.jnmf.gui.components.project.ProjectSettings

         try
         {
            os = new FileOutputStream(file);
            ObjectOutputStream oos = new ObjectOutputStream(os);

            ProjectSettings settings = project.resolveSettings();

            oos.writeObject(settings);
         }
         catch (FileNotFoundException e)
         {
View Full Code Here

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

Examples of org.osmorc.settings.ProjectSettings

  @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

Examples of org.osmorc.settings.ProjectSettings

    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
Copyright © 2018 www.massapi.com. 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.