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

Method write

ij/src/main/java/ij/IJ.java:609–616  ·  view source on GitHub ↗

@deprecated replaced by IJ.log(), ResultsTable.setResult() and TextWindow.append(). There are examples at http://imagej.net/ij/plugins/sine-cosine.html

(String s)

Source from the content-addressed store, hash-verified

607 * http://imagej.net/ij/plugins/sine-cosine.html
608 */
609 public static void write(String s) {
610 if (textPanel==null && ij!=null)
611 showResults();
612 if (textPanel!=null)
613 textPanel.append(s);
614 else
615 System.out.println(s);
616 }
617
618 private static void showResults() {
619 TextWindow resultsWindow = new TextWindow("Results", "", 400, 250);

Callers 13

saveStringMethod · 0.95
appendMethod · 0.95
displayResultsMethod · 0.95
runMethod · 0.95
runMethod · 0.95
mousePressedMethod · 0.95
runMethod · 0.95
setAsROIMethod · 0.95
getContoursMethod · 0.95
GetNextMethod · 0.95
addScrollBarMethod · 0.95
addButtonToPanelMethod · 0.95

Calls 8

showResultsMethod · 0.95
getFileNameMethod · 0.95
getDirectoryMethod · 0.95
printlnMethod · 0.80
appendMethod · 0.65
writeMethod · 0.65
closeMethod · 0.65
equalsMethod · 0.45

Tested by

no test coverage detected