Package net.sf.mzmine.project

Examples of net.sf.mzmine.project.ProjectManager


    // Create a new, empty project
    MZmineProject newProject = new MZmineProjectImpl();

    // Replace the current project with the new one
    ProjectManager projectManager = MZmineCore.getProjectManager();
    projectManager.setCurrentProject(newProject);

    // Ask the garbage collector to free the previously used memory
    System.gc();

    logger.info("Project closed.");
View Full Code Here


        // the TaskProgressWindow from disposing
        frame.doDefaultCloseAction();
      }

      // Replace the current project with the new one
      ProjectManager projectManager = MZmineCore.getProjectManager();
      projectManager.setCurrentProject(newProject);

      logger.info("Finished opening project " + openFile);

      setStatus(TaskStatus.FINISHED);
View Full Code Here

TOP

Related Classes of net.sf.mzmine.project.ProjectManager

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.