Package cysbml.cytoscape

Source Code of cysbml.cytoscape.CytoscapeWrapper

package cysbml.cytoscape;

import cytoscape.Cytoscape;
import cytoscape.view.CytoscapeDesktop;

public class CytoscapeWrapper {
  /**
   * Sets the Status Bar Message.
   * Feature only available in Cytoscape 2.2.
   *
   * @param msg User msg.
   */
  public static void setStatusBarMsg(String msg) {
    CytoscapeDesktop desktop = Cytoscape.getDesktop();
    desktop.setStatusBarMsg(msg);
  }

  /**
   * Clears the Status Bar Message.
   * Feature only available in Cytoscape 2.2.
   */
  public static void clearStatusBar() {
    CytoscapeDesktop desktop = Cytoscape.getDesktop();
    desktop.clearStatusBar();
  }
}
TOP

Related Classes of cysbml.cytoscape.CytoscapeWrapper

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.