//Title: Simulator for network bandwidth measurement //Version: //Copyright: Copyright (c) 1998 //Author: xhe //Company: UCCS //package Simulator; import java.io.*; import java.util.*; public class Simulator { //Chart chart; public Simulator() { try { jbInit(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { Simulator simulation = new Simulator(); } private void jbInit() throws Exception { // chart = new Chart(); boolean trafficoutput = true; // get the time setting double smt = 0.5; double emt = 8; double tmi = 0.0064; double pmi = 0.1; AdaptiveCprobingMeasurement SM = new AdaptiveCprobingMeasurement("Slope",smt,emt,tmi,pmi,trafficoutput); } }