/* * Main.java * * Created on November 18, 2007, 12:18 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ import javax.swing.*; import java.awt.*; /** * * @author bcolvin */ public class Main { public static StudentTestToolUI test; public static void main(String[] args) { test=new StudentTestToolUI(); test.setVisible(true); } }