Package org.springframework.roo.shell.eclipse

Examples of org.springframework.roo.shell.eclipse.ProjectRefresher


        else if (project.getRawLocation() != null) {
          projectLocation = project.getRawLocation().toOSString();
        }

        try {
          ProjectRefresher refresher = new ProjectRefresher(project);
          bootstrap = new Bootstrap(projectLocation, install.getHome(), install.getVersion(), refresher);
          bootstrap.start(appender, project.getName());

          setEnabled(true);

          // refresh the project to make sure we are in sync with Roo
          refresher.refresh(null, false);

          if (initialCommand != null) {
            new CommandJob(initialCommand);
          }
          initializationStatus = Status.OK_STATUS;
View Full Code Here


          // Create Roo project by launching Roo and invoking the
          // create project command
          String projectLocation = projectFile.getCanonicalPath();

          bootstrap = new Bootstrap(projectLocation, install.getHome(), install.getVersion(), new ProjectRefresher(null));

          // Init Roo shell
          bootstrap.start(new StyledTextAppender(shellPage.getRooShell()), projectPage.getProjectName());
          monitor.worked(3);
View Full Code Here

TOP

Related Classes of org.springframework.roo.shell.eclipse.ProjectRefresher

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.