Returns the contents of the Log window or null if the Log window is not open.
()
| 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 |
no test coverage detected