]> source.dussan.org Git - poi.git/commitdiff
Set constants to be static.
authorShawn Laubach <slaubach@apache.org>
Wed, 31 Dec 2003 17:02:23 +0000 (17:02 +0000)
committerShawn Laubach <slaubach@apache.org>
Wed, 31 Dec 2003 17:02:23 +0000 (17:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353472 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/usermodel/HSSFPrintSetup.java

index 69085fda2c23135e3788652ccdb6eb116e8d26c6..c4879160e5c42293a8ff7475e0532fe20ee3d89d 100644 (file)
@@ -59,28 +59,28 @@ import org.apache.poi.hssf.record.PrintSetupRecord;
  * <P>
  * Paper size constants have been added for the ones I have access
  * to.  They follow as:<br>
- *  public final short LETTER_PAPERSIZE    = 1;<br>
- *  public final short LEGAL_PAPERSIZE     = 5;<br>
- *  public final short EXECUTIVE_PAPERSIZE    = 7;<br>
- *  public final short A4_PAPERSIZE       = 9;<br>
- *  public final short A5_PAPERSIZE     = 11;<br>
- *  public final short ENVELOPE_10_PAPERSIZE    = 20;<br>
- *  public final short ENVELOPE_DL_PAPERSIZE    = 27;<br>
- *  public final short ENVELOPE_CS_PAPERSIZE    = 28;<br>
- *  public final short ENVELOPE_MONARCH_PAPERSIZE = 37;<br>
+ *  public static final short LETTER_PAPERSIZE    = 1;<br>
+ *  public static final short LEGAL_PAPERSIZE     = 5;<br>
+ *  public static final short EXECUTIVE_PAPERSIZE    = 7;<br>
+ *  public static final short A4_PAPERSIZE       = 9;<br>
+ *  public static final short A5_PAPERSIZE     = 11;<br>
+ *  public static final short ENVELOPE_10_PAPERSIZE    = 20;<br>
+ *  public static final short ENVELOPE_DL_PAPERSIZE    = 27;<br>
+ *  public static final short ENVELOPE_CS_PAPERSIZE    = 28;<br>
+ *  public static final short ENVELOPE_MONARCH_PAPERSIZE = 37;<br>
  * <P>
  * @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.