Example usage for org.apache.pdfbox.pdmodel.interactive.annotation PDAnnotationRubberStamp PDAnnotationRubberStamp

List of usage examples for org.apache.pdfbox.pdmodel.interactive.annotation PDAnnotationRubberStamp PDAnnotationRubberStamp

Introduction

In this page you can find the example usage for org.apache.pdfbox.pdmodel.interactive.annotation PDAnnotationRubberStamp PDAnnotationRubberStamp.

Prototype

public PDAnnotationRubberStamp(COSDictionary field) 

Source Link

Document

Creates a Rubber Stamp annotation from a COSDictionary, expected to be a correct object definition.

Usage

From source file:net.padaf.preflight.annotation.RubberStampAnnotationValidator.java

License:Apache License

public RubberStampAnnotationValidator(DocumentHandler handler, COSDictionary annotDictionary) {
    super(handler, annotDictionary);
    this.pdRStamp = new PDAnnotationRubberStamp(annotDictionary);
    this.pdAnnot = this.pdRStamp;
}