The specified Window becomes the front window.
(Window win)
| 446 | |
| 447 | /** The specified Window becomes the front window. */ |
| 448 | public static void setWindow(Window win) { |
| 449 | //System.out.println("setWindow(W): "+win); |
| 450 | frontWindow = win; |
| 451 | if (win instanceof Frame) |
| 452 | frontFrame = (Frame)win; |
| 453 | } |
| 454 | |
| 455 | /** The specified frame becomes the front window, the one returnd by getFrontWindow(). */ |
| 456 | @AstroImageJ(reason = "Support MeasurementsWindow", modified = true) |
no test coverage detected