()
| 6925 | } |
| 6926 | |
| 6927 | private void renameResults() { |
| 6928 | String arg1 = getFirstString(); |
| 6929 | String arg2 = null; |
| 6930 | if (interp.nextToken()==')') |
| 6931 | interp.getRightParen(); |
| 6932 | else |
| 6933 | arg2 = getLastString(); |
| 6934 | if (resultsPending) { |
| 6935 | ResultsTable rt = Analyzer.getResultsTable(); |
| 6936 | if (rt!=null && rt.size()>0) |
| 6937 | rt.show("Results"); |
| 6938 | resultsPending = false; |
| 6939 | } |
| 6940 | if (arg2!=null) |
| 6941 | IJ.renameResults(arg1, arg2); |
| 6942 | else |
| 6943 | IJ.renameResults(arg1); |
| 6944 | } |
| 6945 | |
| 6946 | double doOverlay() { |
| 6947 | interp.getToken(); |
no test coverage detected