/* -------------------------------------------------------------------------- */ /* */ /* ASP CODE DOCUMENTOR GUI APPLICATION */ /* */ /* Frans Coenen */ /* */ /* Wednesday 17 Octiber 2007 */ /* */ /* Department of Computer Science */ /* The University of Liverpool */ /* */ /* -------------------------------------------------------------------------- */ /* Web Based Application .asp file code documentor GUI interface. Compile using: javac ASPdocApp_GUI.java Run using java ASPdocApp_GUI */ import javax.swing.JFrame; public class ASPdocApp_GUI { /* ------ FIELDS ------ */ // No fields /* ------ METHODS ------ */ /** Main method (to start the "ball rolling"). */ public static void main(String Args[]) { // Create asp code documentor model ASPdoc newASPdoc = new ASPdoc(); // Creat asp code documentor GUI control instance and display ASPdocControl newASPdocControl = new ASPdocControl(newASPdoc); newASPdocControl.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); newASPdocControl.setSize(700,700); newASPdocControl.setVisible(true); } }