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

Method getAllHeadings

ij/src/main/java/ij/macro/Functions.java:7787–7797  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7785 }
7786
7787 private Variable getAllHeadings() {
7788 interp.getParens();
7789 String[] headings = ResultsTable.getDefaultHeadings();
7790 StringBuilder sb = new StringBuilder(250);
7791 for (int i=0; i<headings.length; i++) {
7792 sb.append(headings[i]);
7793 if (i<headings.length-1)
7794 sb.append("\t");
7795 }
7796 return new Variable(sb.toString());
7797 }
7798
7799 private String getTitle() {
7800 String title = null;

Callers 1

doTableMethod · 0.95

Calls 4

getDefaultHeadingsMethod · 0.95
getParensMethod · 0.80
appendMethod · 0.65
toStringMethod · 0.45

Tested by

no test coverage detected