Package com.dubture.composer.core.buildpath

Examples of com.dubture.composer.core.buildpath.BuildPathManager.update()


        projectPreferences.flush();
       
        // update buildpath
        ComposerProject composerProject = new ComposerProject(scriptProject.getProject());
        BuildPathManager bpm = new BuildPathManager(composerProject);
        bpm.update();
      } catch (CoreException e) {
        e.printStackTrace();
      } catch (BackingStoreException e) {
        e.printStackTrace();
      }
View Full Code Here


        IProject project = ((IResource)adaptable.getAdapter(IResource.class)).getProject();
        IComposerProject composerProject = ComposerPlugin.getDefault().getComposerProject(project);
       
        BuildPathManager manager = new BuildPathManager(composerProject);
        try {
          manager.update();
        } catch (CoreException e) {
          e.printStackTrace();
        }
      }
    }
View Full Code Here

      IResourceDelta delta = getDelta(project);
      BuildPathManager buildPathManager = new BuildPathManager(composerProject);

      if (delta == null) {
        if (project.hasNature(ComposerNature.NATURE_ID)) {
          buildPathManager.update(monitor);
        }
       
        return null;
      }
View Full Code Here

      // nothing to do
      if (!changed) {
        return null;
      }
     
      buildPathManager.update(monitor);
    } catch (Exception e) {
      Logger.logException(e);
    }

    return null;
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.