Package net.sf.mzmine.desktop.impl.projecttree

Examples of net.sf.mzmine.desktop.impl.projecttree.ProjectTreeModel.removeObject()


    if (Arrays.asList(project.getDataFiles()).contains(rawDataFile)) {
      final ProjectTreeModel treeModel = project.getTreeModel();
      Runnable swingCode = new Runnable() {
        @Override
        public void run() {
          treeModel.removeObject(massList);
        }
      };

      SwingUtilities.invokeLater(swingCode);
View Full Code Here


    // We have to update the project tree model
    MZmineProjectImpl project = (MZmineProjectImpl) MZmineCore
        .getCurrentProject();
    ProjectTreeModel treeModel = project.getTreeModel();
    treeModel.removeObject(row);

    updateMaxIntensity();
  }

  /**
 
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.