Examples of PerformanceIndices2DGraph


Examples of jmt.gui.jaba.graphs.PerformanceIndices2DGraph

    if (data.hasResults() && data.areResultsOK()
        && data.getResults().getSaturationSectors().size() > 0) {
      if (data.getClasses() == 2) {
        this.removeAll();
        this.setLayout(new BorderLayout());
        graph = new PerformanceIndices2DGraph(data);
        this.add(new JabaCanvas(graph), BorderLayout.CENTER);
        this.add(new JLabel(JabaConstants.DESCRIPITION_GRAPH_PERFORMANCE_INDEX),
            BorderLayout.PAGE_END);
        JPanel flowPanel = new JPanel(
            new FlowLayout(FlowLayout.LEADING));
View Full Code Here

Examples of jmt.gui.jaba.graphs.PerformanceIndices2DGraph

        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();
        this.setLayout(new GridLayout(1, 2));
        this.add(new JabaCanvas(new Sectors3DGraph(data)));
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.