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

Method showList

ij/src/main/java/ij/gui/PlotWindow.java:812–820  ·  view source on GitHub ↗

Shows the data of the backing plot in a Textwindow with columns

(boolean useLabels)

Source from the content-addressed store, hash-verified

810
811 /** Shows the data of the backing plot in a Textwindow with columns */
812 void showList(boolean useLabels){
813 ResultsTable rt = plot.getResultsTable(saveXValues, useLabels);
814 if (rt==null) return;
815 rt.show("Plot Values");
816 if (autoClose) {
817 imp.changes=false;
818 close();
819 }
820 }
821
822 /** Returns the plot values with simple headings (X, Y, Y1 etc, not the labels) as a ResultsTable.
823 * Use plot.getResultsTableWithLabels for a table with data set labels as column headings */

Callers 2

drawMethod · 0.95
actionPerformedMethod · 0.95

Calls 3

showMethod · 0.95
closeMethod · 0.65
getResultsTableMethod · 0.45

Tested by

no test coverage detected