diff options
author | William Victor Mote <vmote@apache.org> | 2003-09-15 17:45:49 +0000 |
---|---|---|
committer | William Victor Mote <vmote@apache.org> | 2003-09-15 17:45:49 +0000 |
commit | c0a9978ce16505eff791f147d09695a85c8b2f54 (patch) | |
tree | 74fd4e2ca9f9daea4866d958ba8884606a400ef5 /src/java | |
parent | b6e93719d628b4dd65cf318bc3a324a8d29a3ee5 (diff) | |
download | xmlgraphics-fop-c0a9978ce16505eff791f147d09695a85c8b2f54.tar.gz xmlgraphics-fop-c0a9978ce16505eff791f147d09695a85c8b2f54.zip |
make instance variables protected instead of private to make subclassing easier
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196910 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java')
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/AddLMVisitor.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/AddLMVisitor.java b/src/java/org/apache/fop/layoutmgr/AddLMVisitor.java index 600ca2449..c9106e7ac 100644 --- a/src/java/org/apache/fop/layoutmgr/AddLMVisitor.java +++ b/src/java/org/apache/fop/layoutmgr/AddLMVisitor.java @@ -140,11 +140,11 @@ public class AddLMVisitor extends FOTreeVisitor { /** The List object to which methods in this class should add Layout * Managers */ - private List currentLMList; + protected List currentLMList; /** A List object which can be used to save and restore the currentLMList if * another List should temporarily be used */ - private List saveLMList; + protected List saveLMList; /** * |