Package jmt.gui.jwat.workloadAnalysis.chart

Examples of jmt.gui.jwat.workloadAnalysis.chart.DispKMeanMatrix


  private boolean redraw = true;

  public DispersionkMeanPanel(WorkloadAnalysisSession session, int clustering, int clusters) {
    this.setLayout(new BorderLayout());
    this.clusters = clusters;
    matrix = new DispKMeanMatrix(session, -1);
    this.add(matrix, BorderLayout.CENTER);
    matrix.setClustering(clustering, clusters);
    this.add(new JScrollPane(new myPanel(), ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER),
        BorderLayout.EAST);
  }
View Full Code Here

TOP

Related Classes of jmt.gui.jwat.workloadAnalysis.chart.DispKMeanMatrix

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.