Called once when ImageJ quits.
(Properties prefs)
| 809 | |
| 810 | /** Called once when ImageJ quits. */ |
| 811 | public void savePreferences(Properties prefs) { |
| 812 | Point loc = getLocation(); |
| 813 | prefs.put(IJ_X, Integer.toString(loc.x)); |
| 814 | prefs.put(IJ_Y, Integer.toString(loc.y)); |
| 815 | } |
| 816 | |
| 817 | @AstroImageJ(reason = "Run AIJ startup; Load on EventQueue", modified = true) |
| 818 | public static void main(String args[]) { |
no test coverage detected