Package fbench.graph

Examples of fbench.graph.GraphView


    // rightPanel.add(treeView, BorderLayout.CENTER);
    JSplitPane rightPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, treeView, propsView);
    rightPane.setResizeWeight(1.0);
    rightPane.setPreferredSize(new Dimension(150, 250));

    graphView = new GraphView(document);

    JScrollPane graphicView = new JScrollPane(graphView);
    graphicView.setPreferredSize(new Dimension(550, 250));

    rightPane.setMaximumSize(new Dimension());
View Full Code Here


  public GraphView getGraphView() {
    return graphView;
  }

  public GraphView getGraphView(Document doc) {
    return graphView = new GraphView(doc);
  }
View Full Code Here

  }
 
  private class AcceptDeleteButtonListener implements ActionListener{
    public void actionPerformed(ActionEvent evt){
      deleteElement(document.getDocumentElement().getChildNodes());
      GraphView gv = getGraphView();
      gv.setElement(getModelElement());
      LibraryElementView lev = (LibraryElementView)(gv.getParent().getParent().getParent().getParent().getParent());
      lev.getTextModel().setElement(document.getDocumentElement());
      //getGraphView().setElement(getModelElement());
      dispose();
    }
View Full Code Here

TOP

Related Classes of fbench.graph.GraphView

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.