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

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

Introduction

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

Prototype

public PDAnnotationUnknown(COSDictionary dic) 

Source Link

Document

Creates an arbitrary annotation from a COSDictionary, expected to be a correct object definition for some sort of annotation.

Usage

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

License:Apache License

public InkAnnotationValdiator(DocumentHandler handler, COSDictionary annotDictionary) {
    super(handler, annotDictionary);
    this.pdUnk = new PDAnnotationUnknown(annotDictionary);
    this.pdAnnot = this.pdUnk;
}

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

License:Apache License

public PrintMarkAnnotationValidator(DocumentHandler handler, COSDictionary annotDictionary) {
    super(handler, annotDictionary);
    this.pdUnk = new PDAnnotationUnknown(annotDictionary);
    this.pdAnnot = this.pdUnk;
}

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

License:Apache License

public TrapNetAnnotationValidator(DocumentHandler handler, COSDictionary annotDictionary) {
    super(handler, annotDictionary);
    this.pdUnk = new PDAnnotationUnknown(annotDictionary);
    this.pdAnnot = this.pdUnk;
}