Sets the ResultsTable associated with this TextPanel.
(ResultsTable rt)
| 1191 | |
| 1192 | /** Sets the ResultsTable associated with this TextPanel. */ |
| 1193 | public void setResultsTable(ResultsTable rt) { |
| 1194 | if (IJ.debugMode) IJ.log("setResultsTable: "+rt); |
| 1195 | this.rt = rt; |
| 1196 | if (!menusExtended) |
| 1197 | extendMenus(); |
| 1198 | } |
| 1199 | |
| 1200 | /** Returns the ResultsTable associated with this TextPanel, or null. */ |
| 1201 | public ResultsTable getResultsTable() { |
no test coverage detected