Package jmt.gui.jaba.graphs

Examples of jmt.gui.jaba.graphs.Convex2DGraph


  public void redraw() {
    if (data.hasResults() && data.areResultsOK()
        && data.getResults().getSaturationSectors().size() > 0) {
      if (data.getClasses() == 2) {
        this.removeAll();
        painter2D = new Convex2DGraph(data, mainWin);
        this.setLayout(new BorderLayout());
        showLabelsBox = new JCheckBox(
            JabaConstants.OPTION_SHOW_ONLY_BOTTLENECK, true);
        showLabelsBox.setSelected(false);
        showLabelsBox.addActionListener(this);
View Full Code Here


      if (data.getClasses() == 2) {
        this.removeAll();
        this.setLayout(new GridLayout(2, 1));
        JPanel tmp = new JPanel(new GridLayout(1, 2));
        tmp.add(new JabaCanvas(new Sectors2DGraph(data)));
        tmp.add(new JabaCanvas(new Convex2DGraph(data, mainWin)));
        this.add(tmp);
        this.add(new JabaCanvas(new PerformanceIndices2DGraph(data)));
        repaint();
      } else if (data.getClasses() == 3) {
        this.removeAll();
View Full Code Here

TOP

Related Classes of jmt.gui.jaba.graphs.Convex2DGraph

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.