Examples of updateView()


Examples of org.cytoscape.view.model.CyNetworkView.updateView()

      CyNetworkView netView = resultsPanel.getNetworkView();

      if ((netView != null) &&
        (this.visualMappingMgr.getVisualStyle(netView) == appStyle)) {
        appStyle.apply(netView);
        netView.updateView();
      }
    }
  }
}
View Full Code Here

Examples of org.cytoscape.view.model.CyNetworkView.updateView()

          RenderingEngine<CyNetwork> re = renderingEngineFactory.createRenderingEngine(panel, clusterView);

          vs.apply(clusterView);
          clusterView.fitContent();
          clusterView.updateView();
          window.pack();
          window.repaint();

          re.createImage(width, height);
          re.printCanvas(g);
View Full Code Here

Examples of org.cytoscape.view.model.CyNetworkView.updateView()

    final CyNetworkView view = networkViewFactory.createNetworkView(net);

    if (vs == null) vs = visualMappingMgr.getDefaultVisualStyle();
    visualMappingMgr.setVisualStyle(vs, view);
    vs.apply(view);
    view.updateView();

    return view;
  }

  public void displayNetworkView(final CyNetworkView view) {
View Full Code Here

Examples of org.openscience.jchempaint.controller.IChemModelRelay.updateView()

        WaitDialog.showDialog();
        IChemModelRelay hub = jcpPanel.get2DHub();
        hub.cleanup();
        jcpPanel.setIsNewChemModel(true);
        WaitDialog.hideDialog();
        hub.updateView();
    }
}
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.