/** * The main method starts the Java application. * * @param args[] the input parameters */ public static void main(String[] args) { CalculationControl.createApp(new SchroedingerApp(), args); }
/** * Starts the Java application. * * @param args command line parameters */ public static void main(String[] args) { // sets up calculation control structure using this class CalculationControl.createApp(new FallingParticlePlotApp()); }
/** * Starts Java application. * * @param args command line parameters */ public static void main(String args[]) { CalculationControl.createApp(new IsingAutoCorrelatorApp()); }
/** * Starts the Java application. * * @param args command line parameters */ public static void main( String[] args) { // creates a calculation control structure using this class CalculationControl.createApp(new DrawingWorldApp()); }