1 31 package org.pdfbox.pdmodel.interactive.annotation; 32 33 import org.pdfbox.cos.COSDictionary; 34 import org.pdfbox.cos.COSName; 35 36 42 public class PDAnnotationWidget extends PDAnnotation 43 { 44 45 48 public PDAnnotationWidget() 49 { 50 super(); 51 getDictionary().setItem( COSName.SUBTYPE, COSName.getPDFName( "Widget" ) ); 52 } 53 54 55 61 public PDAnnotationWidget(COSDictionary field) 62 { 63 super( field ); 64 } 65 } | Popular Tags |