Package org.owasp.jbrofuzz.graph.canvas

Examples of org.owasp.jbrofuzz.graph.canvas.StatusCodeChart


    super(SwingConstants.BOTTOM);

    this.gPanel = gPanel;

    statusChart = new StatusCodeChart();
    jIndexChart = new JaccardIndexChart();
    rSizeChart = new ResponseSizeChart();
    rTimeChart = new ResponseTimeChart();
    hDistChart = new HammingDistanceChart();
    rHeadChart = new ResponseHeaderSizeChart();
View Full Code Here


    if (folderFiles == null) {
      return;
    }

    // Set minimum/max for each graph
    statusChart = new StatusCodeChart(folderFiles.length);
    rTimeChart = new ResponseTimeChart(folderFiles.length);
    rSizeChart = new ResponseSizeChart(folderFiles.length);
    jIndexChart = new JaccardIndexChart(folderFiles.length);
    hDistChart = new HammingDistanceChart(folderFiles.length);
    rHeadChart = new ResponseHeaderSizeChart(folderFiles.length);
View Full Code Here

TOP

Related Classes of org.owasp.jbrofuzz.graph.canvas.StatusCodeChart

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.