Copy the attributes (outline color, fill color, outline width) of 'roi2' to the this selection.
(Roi roi2)
| 2050 | /** Copy the attributes (outline color, fill color, outline width) |
| 2051 | of 'roi2' to the this selection. */ |
| 2052 | public void copyAttributes(Roi roi2) { |
| 2053 | this. strokeColor = roi2.strokeColor; |
| 2054 | this.fillColor = roi2.fillColor; |
| 2055 | this.setStrokeWidth(roi2.getStrokeWidth()); |
| 2056 | this.setName(roi2.getName()); |
| 2057 | this.group = roi2.group; |
| 2058 | } |
| 2059 | |
| 2060 | /** |
| 2061 | * @deprecated |
no test coverage detected