From bc70083b99df0faf0fe57dcfcabaac0b02d20ad3 Mon Sep 17 00:00:00 2001 From: Jordan Naftolin Date: Wed, 21 Jun 2000 01:32:51 +0000 Subject: [PATCH] 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 --- src/org/apache/fop/layout/Area.java | 10 ++++++++++ 1 file changed, 10 insertions(+) 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; + } + } -- 2.39.5