diff options
author | Glen Mazza <gmazza@apache.org> | 2004-08-06 04:22:18 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-08-06 04:22:18 +0000 |
commit | 55a4dc03eeea3dafceeb7c07b8508da593b73389 (patch) | |
tree | 1651e098e346c7b4fa025784b0ad71a58831fe48 /src/java/org/apache/fop/fo/flow/Wrapper.java | |
parent | 3d4cc6eec560cdea6b44741d93b91cdb137ba179 (diff) | |
download | xmlgraphics-fop-55a4dc03eeea3dafceeb7c07b8508da593b73389.tar.gz xmlgraphics-fop-55a4dc03eeea3dafceeb7c07b8508da593b73389.zip |
PR:
Obtained from:
Submitted by:
Reviewed by:
1.) Continued conversion/deprecation of AddLMVisitor. About 16 FO's remaining.
2.) Created a *temporary* LMVisited interface to mark those FO's still
needing conversion. This will be dropped once the process is complete.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197857 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/Wrapper.java')
-rw-r--r-- | src/java/org/apache/fop/fo/flow/Wrapper.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/fo/flow/Wrapper.java b/src/java/org/apache/fop/fo/flow/Wrapper.java index 22cacb2e3..81c48649c 100644 --- a/src/java/org/apache/fop/fo/flow/Wrapper.java +++ b/src/java/org/apache/fop/fo/flow/Wrapper.java @@ -22,6 +22,7 @@ package org.apache.fop.fo.flow; import org.apache.fop.fo.FONode; import org.apache.fop.fo.FObjMixed; import org.apache.fop.layoutmgr.AddLMVisitor; +import org.apache.fop.fo.LMVisited; /** * Implementation for fo:wrapper formatting object. @@ -31,7 +32,7 @@ import org.apache.fop.layoutmgr.AddLMVisitor; * Content: (#PCDATA|%inline;|%block;)* * Properties: id */ -public class Wrapper extends FObjMixed { +public class Wrapper extends FObjMixed implements LMVisited { /** * @param parent FONode that is the parent of this object |