//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(); } }