()
| 7580 | } |
| 7581 | |
| 7582 | private Variable setTableColumn() { |
| 7583 | String column = getFirstString(); |
| 7584 | Variable[] array = new Variable[0]; |
| 7585 | if (interp.nextToken()!=')') { |
| 7586 | interp.getComma(); |
| 7587 | array = getArray(); |
| 7588 | } |
| 7589 | ResultsTable rt = getResultsTable(getTitle()); |
| 7590 | rt.setColumn(column, array); |
| 7591 | rt.show(rt.getTitle()); |
| 7592 | return null; |
| 7593 | } |
| 7594 | |
| 7595 | private Variable updateTable() { |
| 7596 | String title = getTitleArg(); |
no test coverage detected