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

Method getLog

ij/src/main/java/ij/IJ.java:689–694  ·  view source on GitHub ↗

Returns the contents of the Log window or null if the Log window is not open.

()

Source from the content-addressed store, hash-verified

687
688 /** Returns the contents of the Log window or null if the Log window is not open. */
689 public static synchronized String getLog() {
690 if (logPanel==null || ij==null)
691 return null;
692 else
693 return logPanel.getText();
694 }
695
696/** Clears the "Results" window and sets the column headings to
697 those in the tab-delimited 'headings' String. Writes to

Callers 4

getInfoMethod · 0.95
getLogMethod · 0.95
saveLogToFileMethod · 0.95
saveLogToFileMethod · 0.95

Calls 1

getTextMethod · 0.45

Tested by

no test coverage detected