From: Vincent Hennebert Date: Wed, 1 Aug 2007 16:30:44 +0000 (+0000) Subject: Set visibility of fields to private X-Git-Tag: fop-0_95beta~417 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1c4c14e3da7249f7e273ad94172dde7d4e3bd06b;p=xmlgraphics-fop.git Set visibility of fields to private git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@561861 13f79535-47bb-0310-9956-ffa450edef68 --- 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 may 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.