aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/layoutmgr/BidiLayoutManager.java
diff options
context:
space:
mode:
authorGlen Mazza <gmazza@apache.org>2004-08-06 04:22:18 +0000
committerGlen Mazza <gmazza@apache.org>2004-08-06 04:22:18 +0000
commit55a4dc03eeea3dafceeb7c07b8508da593b73389 (patch)
tree1651e098e346c7b4fa025784b0ad71a58831fe48 /src/java/org/apache/fop/layoutmgr/BidiLayoutManager.java
parent3d4cc6eec560cdea6b44741d93b91cdb137ba179 (diff)
downloadxmlgraphics-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/layoutmgr/BidiLayoutManager.java')
-rw-r--r--src/java/org/apache/fop/layoutmgr/BidiLayoutManager.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/BidiLayoutManager.java b/src/java/org/apache/fop/layoutmgr/BidiLayoutManager.java
index b20ead1fd..46d9b74d8 100644
--- a/src/java/org/apache/fop/layoutmgr/BidiLayoutManager.java
+++ b/src/java/org/apache/fop/layoutmgr/BidiLayoutManager.java
@@ -29,11 +29,11 @@ import org.apache.fop.area.inline.InlineArea;
* ltr or rtl than its parent writing mode then this
* reverses the inline areas (at the character level).
*/
-class BidiLayoutManager extends LeafNodeLayoutManager {
+public class BidiLayoutManager extends LeafNodeLayoutManager {
private List children;
- BidiLayoutManager(InlineStackingLayoutManager cLM) {
+ public BidiLayoutManager(InlineStackingLayoutManager cLM) {
children = new ArrayList();
/*
for (int count = cLM.size() - 1; count >= 0; count--) {