Starts the Java application. @param args command line parameters
(String[] args)
| 116 | * @param args command line parameters |
| 117 | */ |
| 118 | public static void main(String[] args) { // Create a calculation control structure using this class |
| 119 | CalculationControl control = CalculationControl.createApp(new StateMachineTestApp()); |
| 120 | control.addButton("startHelper", "Start"); |
| 121 | control.addButton("stopHelper", "Stop"); |
| 122 | } |
| 123 | } |