package iageserver; import java.awt.*; /** * Wrapper class to start up mainframe. * Also contains MAIN routine for application startup. */ public class mainscreen { /** Construct the application */ public mainscreen(String[] args) { Server theserver = new Server(); theserver.parseArgs(args); if (theserver.useGUI) mainframe frame = new mainframe(theserver); } /** Main method - starts IAGE */ public static void main(String[] args) { new mainscreen(args); } }