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

Method getColumn

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

Source from the content-addressed store, hash-verified

7692 }
7693
7694 private Variable getColumn() {
7695 String col = getFirstString();
7696 ResultsTable rt = getResultsTable(getTitle());
7697 Variable column = null;
7698 try {
7699 column = new Variable(rt.getColumnAsVariables(col));
7700 } catch (Exception e) {
7701 interp.error(e.getMessage());
7702 }
7703 return column;
7704 }
7705
7706 private Variable columnExists() {
7707 String col = getFirstString();

Callers 1

doTableMethod · 0.95

Calls 6

getFirstStringMethod · 0.95
getResultsTableMethod · 0.95
getTitleMethod · 0.95
getColumnAsVariablesMethod · 0.95
errorMethod · 0.45
getMessageMethod · 0.45

Tested by

no test coverage detected