diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFPrintSetup.java b/src/java/org/apache/poi/hssf/usermodel/HSSFPrintSetup.java index 69085fda2..c4879160e 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFPrintSetup.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFPrintSetup.java @@ -59,28 +59,28 @@ import org.apache.poi.hssf.record.PrintSetupRecord; *

* Paper size constants have been added for the ones I have access * to. They follow as:
- * public final short LETTER_PAPERSIZE = 1;
- * public final short LEGAL_PAPERSIZE = 5;
- * public final short EXECUTIVE_PAPERSIZE = 7;
- * public final short A4_PAPERSIZE = 9;
- * public final short A5_PAPERSIZE = 11;
- * public final short ENVELOPE_10_PAPERSIZE = 20;
- * public final short ENVELOPE_DL_PAPERSIZE = 27;
- * public final short ENVELOPE_CS_PAPERSIZE = 28;
- * public final short ENVELOPE_MONARCH_PAPERSIZE = 37;
+ * public static final short LETTER_PAPERSIZE = 1;
+ * public static final short LEGAL_PAPERSIZE = 5;
+ * public static final short EXECUTIVE_PAPERSIZE = 7;
+ * public static final short A4_PAPERSIZE = 9;
+ * public static final short A5_PAPERSIZE = 11;
+ * public static final short ENVELOPE_10_PAPERSIZE = 20;
+ * public static final short ENVELOPE_DL_PAPERSIZE = 27;
+ * public static final short ENVELOPE_CS_PAPERSIZE = 28;
+ * public static final short ENVELOPE_MONARCH_PAPERSIZE = 37;
*

* @author Shawn Laubach (slaubach at apache dot org) */ public class HSSFPrintSetup extends Object { - public final short LETTER_PAPERSIZE = 1; - public final short LEGAL_PAPERSIZE = 5; - public final short EXECUTIVE_PAPERSIZE = 7; - public final short A4_PAPERSIZE = 9; - public final short A5_PAPERSIZE = 11; - public final short ENVELOPE_10_PAPERSIZE = 20; - public final short ENVELOPE_DL_PAPERSIZE = 27; - public final short ENVELOPE_CS_PAPERSIZE = 28; - public final short ENVELOPE_MONARCH_PAPERSIZE = 37; + public static final short LETTER_PAPERSIZE = 1; + public static final short LEGAL_PAPERSIZE = 5; + public static final short EXECUTIVE_PAPERSIZE = 7; + public static final short A4_PAPERSIZE = 9; + public static final short A5_PAPERSIZE = 11; + public static final short ENVELOPE_10_PAPERSIZE = 20; + public static final short ENVELOPE_DL_PAPERSIZE = 27; + public static final short ENVELOPE_CS_PAPERSIZE = 28; + public static final short ENVELOPE_MONARCH_PAPERSIZE = 37; PrintSetupRecord printSetupRecord; /** * Constructor. Takes the low level print setup record.