diff options
author | Vincent Hennebert <vhennebert@apache.org> | 2007-08-01 16:30:44 +0000 |
---|---|---|
committer | Vincent Hennebert <vhennebert@apache.org> | 2007-08-01 16:30:44 +0000 |
commit | 1c4c14e3da7249f7e273ad94172dde7d4e3bd06b (patch) | |
tree | f0439836f5f71b8daa6d1cc4d24e7444507990a5 /src/java/org/apache/fop/layoutmgr/LayoutContext.java | |
parent | 65a4c0beb39d2983da2ec5cbb108d2976c671885 (diff) | |
download | xmlgraphics-fop-1c4c14e3da7249f7e273ad94172dde7d4e3bd06b.tar.gz xmlgraphics-fop-1c4c14e3da7249f7e273ad94172dde7d4e3bd06b.zip |
Set visibility of fields to private
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@561861 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/layoutmgr/LayoutContext.java')
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/LayoutContext.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/LayoutContext.java b/src/java/org/apache/fop/layoutmgr/LayoutContext.java index 11514b756..675a38e79 100644 --- a/src/java/org/apache/fop/layoutmgr/LayoutContext.java +++ b/src/java/org/apache/fop/layoutmgr/LayoutContext.java @@ -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. |