protected void copyAnnotationState(PDFAnnotation source, PDFAnnotation target) {
    super.copyAnnotationState(source, target);

    AnnotationStamp sourceStamp = (AnnotationStamp) source;
    AnnotationStamp targetStamp = (AnnotationStamp) target;
    targetStamp.setType(sourceStamp.getType(), sourceStamp.getOpacity());
  }