MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / copyAttributes

Method copyAttributes

ij/src/main/java/ij/gui/PointRoi.java:1025–1035  ·  view source on GitHub ↗
(Roi roi2)

Source from the content-addressed store, hash-verified

1023 }
1024
1025 @Override
1026 public void copyAttributes(Roi roi2) {
1027 super.copyAttributes(roi2);
1028 if (roi2 instanceof PointRoi) {
1029 PointRoi p2 = (PointRoi)roi2;
1030 this.type = p2.type;
1031 this.size = p2.size;
1032 this.showLabels = p2.showLabels;
1033 this.fontSize = p2.fontSize;
1034 }
1035 }
1036
1037 public void setCounterInfo(int[] info) {
1038 counterInfo = info;

Callers 1

checkContainedMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected