MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / toFront

Method toFront

ij/src/main/java/ij/WindowManager.java:647–652  ·  view source on GitHub ↗
(Frame frame)

Source from the content-addressed store, hash-verified

645 }
646
647 public static void toFront(Frame frame) {
648 if (frame==null) return;
649 if (frame.getState()==Frame.ICONIFIED)
650 frame.setState(Frame.NORMAL);
651 frame.toFront();
652 }
653
654 public static void toFront(Window window) {
655 if (window==null) return;

Callers 15

keyPressedMethod · 0.95
activateWindowMethod · 0.95
runMethod · 0.95
showAllMethod · 0.95
CommandsMethod · 0.95
LineWidthAdjusterMethod · 0.95
RoiManagerMethod · 0.95
SyncWindowsMethod · 0.95
RecorderMethod · 0.95
ColorThresholderMethod · 0.95
MemoryMonitorMethod · 0.95
PasteControllerMethod · 0.95

Calls 2

setStateMethod · 0.80
getStateMethod · 0.45

Tested by

no test coverage detected