//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 SimProbe { Chart chart; public SimProbe() { try { jbInit(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { SimProbe simulation = new SimProbe(); } private void jbInit() throws Exception { chart = new Chart(); } }