Initialises the model, all bootstrap implementations should call this method after base start(). @throws Exception if an error occurs while initialising the Model @see #start() @see Model
()
| 103 | * @see Model |
| 104 | */ |
| 105 | protected void initModel() throws Exception { |
| 106 | Model.getSingleton().init(getControlOverrides()); |
| 107 | Model.getSingleton().getOptionsParam().setGUI(getArgs().isGUI()); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Gets the command line arguments. |
nothing calls this directly
no test coverage detected