(Roi roi2)
| 412 | } |
| 413 | |
| 414 | @Override |
| 415 | public void copyAttributes(Roi roi2) { |
| 416 | super.copyAttributes(roi2); |
| 417 | if (roi2 instanceof Arrow) { |
| 418 | Arrow a2 = (Arrow)roi2; |
| 419 | this.style = a2.getStyle(); |
| 420 | this.headSize = a2.getHeadSize(); |
| 421 | this.doubleHeaded = a2.getDoubleHeaded(); |
| 422 | this.outline = a2.getOutline(); |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | } |
nothing calls this directly
no test coverage detected