Start the Java application. @param args command line parameters
(String[] args)
| 277 | * @param args command line parameters |
| 278 | */ |
| 279 | public static void main(String[] args) { |
| 280 | Animation model = new IsingApp(); |
| 281 | AnimationControl control = new AnimationControl(model); |
| 282 | control.addButton("randomize", "Randomize"); // optional custom action |
| 283 | model.setControl(control); |
| 284 | } |
| 285 | } |
nothing calls this directly
no test coverage detected