diff options
author | William Victor Mote <vmote@apache.org> | 2003-10-07 00:36:14 +0000 |
---|---|---|
committer | William Victor Mote <vmote@apache.org> | 2003-10-07 00:36:14 +0000 |
commit | 159415fbff061bb93ca6e2ec858ce85e38b28905 (patch) | |
tree | a6277e53e7922f73e4131559042ef76279bf188c | |
parent | 4d5340186c241d20697ac63efa710378ca31fc1a (diff) | |
download | xmlgraphics-fop-159415fbff061bb93ca6e2ec858ce85e38b28905.tar.gz xmlgraphics-fop-159415fbff061bb93ca6e2ec858ce85e38b28905.zip |
port from maintenance branch the variables that are used to track an object's location in the input file
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196946 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/java/org/apache/fop/fo/FObj.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/fo/FObj.java b/src/java/org/apache/fop/fo/FObj.java index 2c2d29bd2..acacfbf46 100644 --- a/src/java/org/apache/fop/fo/FObj.java +++ b/src/java/org/apache/fop/fo/FObj.java @@ -110,6 +110,13 @@ public class FObj extends FONode { super(parent); } + /** Marks input file containing this object **/ + public String systemId; + /** Marks line number of this object in the input file **/ + public int line; + /** Marks column number of this object in the input file **/ + public int column; + /** * Set the name of this element. * The prepends "fo:" to the name to indicate it is in the fo namespace. |