From: arved Date: Fri, 10 Mar 2000 02:59:40 +0000 (+0000) Subject: added getAnnotList() method X-Git-Tag: pre-columns~569 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ffa408791df4f6032a287f754cced20c677836bc;p=xmlgraphics-fop.git added getAnnotList() method git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193295 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/pdf/PDFPage.java b/src/org/apache/fop/pdf/PDFPage.java index 863222f5c..63ef4e960 100644 --- a/src/org/apache/fop/pdf/PDFPage.java +++ b/src/org/apache/fop/pdf/PDFPage.java @@ -88,7 +88,8 @@ public class PDFPage extends PDFObject { * @param pageheight the page's height in points */ public PDFPage(int number, PDFResources resources, - PDFStream contents, int pagewidth, + PDFStream contents, + int pagewidth, int pageheight) { /* generic creation of object */ @@ -121,6 +122,15 @@ public class PDFPage extends PDFObject { this.annotList = annotList; } + /** + * get this page's annotation list + * + * @return annotList a PDFAnnotList list of annotations + */ + public PDFAnnotList getAnnotList() { + return this.annotList; + } + /** * represent this object as PDF *