diff options
author | Jordan Naftolin <jordan@apache.org> | 2000-06-21 01:32:51 +0000 |
---|---|---|
committer | Jordan Naftolin <jordan@apache.org> | 2000-06-21 01:32:51 +0000 |
commit | bc70083b99df0faf0fe57dcfcabaac0b02d20ad3 (patch) | |
tree | fbca762f64d6577d5a8e76aa19113e6f48adb718 /src | |
parent | 8871dcb2519cc38aac5773dddfb5a5f3f8cb867a (diff) | |
download | xmlgraphics-fop-bc70083b99df0faf0fe57dcfcabaac0b02d20ad3.tar.gz xmlgraphics-fop-bc70083b99df0faf0fe57dcfcabaac0b02d20ad3.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/org/apache/fop/layout/Area.java | 10 |
1 files changed, 10 insertions, 0 deletions
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; + } + } |