소스 검색

Set visibility of fields to private


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@561861 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_95beta
Vincent Hennebert 17 년 전
부모
커밋
1c4c14e3da
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5
    5
      src/java/org/apache/fop/layoutmgr/LayoutContext.java

+ 5
- 5
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.

Loading…
취소
저장