From: Jordan Naftolin Date: Wed, 21 Jun 2000 01:32:51 +0000 (+0000) Subject: Added internal-link functionality X-Git-Tag: pre-columns~462 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bc70083b99df0faf0fe57dcfcabaac0b02d20ad3;p=xmlgraphics-fop.git Added internal-link functionality (added idReferences variable and methods) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193415 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/layout/Area.java b/src/org/apache/fop/layout/Area.java index 47166c855..4b3c20ceb 100644 --- a/src/org/apache/fop/layout/Area.java +++ b/src/org/apache/fop/layout/Area.java @@ -85,6 +85,7 @@ abstract public class Area extends Box { protected ColorType backgroundColor; + private IDReferences idReferences; protected int paddingTop; protected int paddingLeft; protected int paddingBottom; @@ -288,4 +289,13 @@ abstract public class Area extends Box { public Area getParent() { return this.parent; } + + public void setIDReferences(IDReferences idReferences) { + this.idReferences = idReferences; + } + + public IDReferences getIDReferences() { + return idReferences; + } + }