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

Method showList

ij/src/main/java/ij/WindowManager.java:631–645  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

629 }
630
631 public static void showList() {
632 for (int i=0; i<imageList.size(); i++) {
633 ImageWindow win = (ImageWindow)imageList.get(i);
634 ImagePlus imp = win.getImagePlus();
635 IJ.log(i + " " + imp.getTitle() + (win==currentWindow?"*":"")+" "+imp.getID());
636 }
637 for (int i=0; i<activations.size(); i++) {
638 ImageWindow win = (ImageWindow)activations.get(i);
639 ImagePlus imp = win.getImagePlus();
640 IJ.log(i + " " + imp.getTitle() + " " + imp.getID());
641 }
642 if (imageList.size()==0) IJ.log("imageList is empty");
643 if (activations.size()==0) IJ.log("activations list is empty");
644 IJ.log(" ");
645 }
646
647 public static void toFront(Frame frame) {
648 if (frame==null) return;

Callers

nothing calls this directly

Calls 6

getImagePlusMethod · 0.95
logMethod · 0.95
getTitleMethod · 0.95
getIDMethod · 0.95
sizeMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected