(WindowEvent e)
| 681 | } |
| 682 | |
| 683 | public void windowClosing(WindowEvent e) { |
| 684 | if (closed) |
| 685 | return; |
| 686 | if (ij!=null) { |
| 687 | WindowManager.setCurrentWindow(this); |
| 688 | IJ.doCommand("Close"); |
| 689 | } else { |
| 690 | dispose(); |
| 691 | WindowManager.removeWindow(this); |
| 692 | } |
| 693 | } |
| 694 | |
| 695 | @AstroImageJ(reason = "Always maximize", modified = true) |
| 696 | public void windowStateChanged(WindowEvent e) { |
nothing calls this directly
no test coverage detected