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

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

Introduction

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

Prototype

public PDAnnotationPopup(COSDictionary field) 

Source Link

Document

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

Usage

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

License:Apache License

public PopupAnnotationValidator(DocumentHandler handler, COSDictionary annotDictionary) {
    super(handler, annotDictionary);
    this.pdPopup = new PDAnnotationPopup(annotDictionary);
    this.pdAnnot = this.pdPopup;
}