From 45ce95920f9dcfcb0e3ca2699bada8fa2c31e4a6 Mon Sep 17 00:00:00 2001 From: Peter Bernard West Date: Mon, 5 Jan 2004 02:40:43 +0000 Subject: [PATCH] private static final int[] arrays made protected. private static final int made public. Flagged by Eclipse. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197129 13f79535-47bb-0310-9956-ffa450edef68 --- .../fo/pagination/FoPageSequenceMaster.java | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/java/org/apache/fop/fo/pagination/FoPageSequenceMaster.java b/src/java/org/apache/fop/fo/pagination/FoPageSequenceMaster.java index 63c6a6e01..9299a082e 100644 --- a/src/java/org/apache/fop/fo/pagination/FoPageSequenceMaster.java +++ b/src/java/org/apache/fop/fo/pagination/FoPageSequenceMaster.java @@ -110,13 +110,13 @@ public class FoPageSequenceMaster extends FONode { /** Constant values for FoSinglePageMasterReference. See {@link #sparsePropsMap sparsePropsMap}. */ - private static final int[] s_p_m_r_PropsMap; + protected static final int[] s_p_m_r_PropsMap; /** See {@link #sparseIndices sparseIndices}. */ - private static final int[] s_p_m_r_Indices; + protected static final int[] s_p_m_r_Indices; /** See {@link #numProps numProps}. */ - private static final int s_p_m_r_numProps; + public static final int s_p_m_r_numProps; static { // applicableProps is a HashMap containing the indicies of the @@ -130,13 +130,13 @@ public class FoPageSequenceMaster extends FONode { } /** See {@link #sparsePropsMap sparsePropsMap}. */ - private static final int[] r_p_m_r_PropsMap; + protected static final int[] r_p_m_r_PropsMap; /** See {@link #sparseIndices sparseIndices}. */ - private static final int[] r_p_m_r_Indices; + protected static final int[] r_p_m_r_Indices; /** See {@link #numProps numProps}. */ - private static final int r_p_m_r_numProps; + public static final int r_p_m_r_numProps; static { // Collect the sets of properties that apply @@ -162,13 +162,13 @@ public class FoPageSequenceMaster extends FONode { } /** See {@link #sparsePropsMap sparsePropsMap}. */ - private static final int[] r_p_m_a_PropsMap; + protected static final int[] r_p_m_a_PropsMap; /** See {@link #sparseIndices sparseIndices}. */ - private static final int[] r_p_m_a_Indices; + protected static final int[] r_p_m_a_Indices; /** See {@link #numProps numProps}. */ - private static final int r_p_m_a_numProps; + protected static final int r_p_m_a_numProps; static { r_p_m_a_PropsMap = new int[PropNames.LAST_PROPERTY_INDEX + 1]; @@ -179,13 +179,13 @@ public class FoPageSequenceMaster extends FONode { } /** See {@link #sparsePropsMap sparsePropsMap}. */ - private static final int[] c_p_m_r_PropsMap; + protected static final int[] c_p_m_r_PropsMap; /** See {@link #sparseIndices sparseIndices}. */ - private static final int[] c_p_m_r_Indices; + protected static final int[] c_p_m_r_Indices; /** See {@link #numProps numProps}. */ - private static final int c_p_m_r_numProps; + public static final int c_p_m_r_numProps; static { // Collect the sets of properties that apply -- 2.39.5