()
| 7560 | } |
| 7561 | |
| 7562 | private Variable getSelectionEnd() { |
| 7563 | int selEnd = -1; |
| 7564 | ResultsTable rt = getResultsTable(getTitleArg()); |
| 7565 | String title = rt.getTitle(); |
| 7566 | Frame f = WindowManager.getFrame(title); |
| 7567 | if (f!=null && (f instanceof TextWindow)){ |
| 7568 | TextWindow tWin = (TextWindow)f; |
| 7569 | selEnd = tWin.getTextPanel().getSelectionEnd(); |
| 7570 | return new Variable(selEnd); |
| 7571 | } |
| 7572 | interp.error("\""+title+"\" table not found"); |
| 7573 | return new Variable(selEnd); |
| 7574 | } |
| 7575 | |
| 7576 | private Variable setTableValue() { |
| 7577 | ResultsTable rt = getRT(null); |
no test coverage detected