Overridden so we can exit when window is closed
(WindowEvent e)
| 2199 | * Overridden so we can exit when window is closed |
| 2200 | */ |
| 2201 | @Override |
| 2202 | protected void processWindowEvent(WindowEvent e) { |
| 2203 | if(e.getID() == WindowEvent.WINDOW_CLOSING) { |
| 2204 | new ExitGateAction().actionPerformed(null); |
| 2205 | } |
| 2206 | super.processWindowEvent(e); |
| 2207 | }// processWindowEvent(WindowEvent e) |
| 2208 | |
| 2209 | public static java.util.Collection<Component> getGuiRoots() { |
| 2210 | return guiRoots; |
nothing calls this directly
no test coverage detected