Clears the current XML default.
()
| 84 | * Clears the current XML default. |
| 85 | */ |
| 86 | @Override |
| 87 | public void clearDefaultXML() { |
| 88 | if(xmlDefault==null || model==null) return; |
| 89 | xmlDefault = null; |
| 90 | clearItem.setEnabled(false); |
| 91 | resetSimulation(); |
| 92 | GUIUtils.repaintOSPFrames(); |
| 93 | } |
| 94 | |
| 95 | public void resetSimulation() { |
| 96 | model.stopSimulation(); |
nothing calls this directly
no test coverage detected