]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Set visibility of fields to private
authorVincent Hennebert <vhennebert@apache.org>
Wed, 1 Aug 2007 16:30:44 +0000 (16:30 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Wed, 1 Aug 2007 16:30:44 +0000 (16:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@561861 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/layoutmgr/LayoutContext.java

index 11514b756a225ded559f4587f26b5bb94a76612f..675a38e79d644ce4bc549d883e69b99bc0a5435f 100644 (file)
@@ -71,7 +71,7 @@ public class LayoutContext {
     public static final int KEEP_WITH_PREVIOUS_PENDING = 0x400;
 
 
-    public int flags; // Contains some set of flags defined above
+    private int flags; // Contains some set of flags defined above
     /**
      * Total available stacking dimension for a "galley-level" layout
      * manager (Line or Flow). It is passed by the parent LM. For LineLM,
@@ -79,22 +79,22 @@ public class LayoutContext {
      * These LM <b>may</b> wish to pass this information down to lower
      * level LM to allow them to optimize returned break possibilities.
      */
-    MinOptMax stackLimit;
+    private MinOptMax stackLimit;
 
     /** True if current element list is spanning in multi-column layout. */
     private int nextSpan = Constants.NOT_SET;
 
     /** inline-progression-dimension of nearest ancestor reference area */
-    int refIPD;
+    private int refIPD;
 
     /** the writing mode established by the nearest ancestor reference area */
     private int writingMode = Constants.EN_LR_TB;
 
     /** Current pending space-after or space-end from preceding area */
-    SpaceSpecifier trailingSpace;
+    private SpaceSpecifier trailingSpace;
 
     /** Current pending space-before or space-start from ancestor areas */
-    SpaceSpecifier leadingSpace;
+    private SpaceSpecifier leadingSpace;
     
     /**
      * A list of pending marks (border and padding) on the after edge when a page break occurs.