From ffa408791df4f6032a287f754cced20c677836bc Mon Sep 17 00:00:00 2001 From: arved Date: Fri, 10 Mar 2000 02:59:40 +0000 Subject: [PATCH] added getAnnotList() method git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193295 13f79535-47bb-0310-9956-ffa450edef68 --- src/org/apache/fop/pdf/PDFPage.java | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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 * -- 2.39.5