Set constants to be static.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353472 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shawn Laubach 2003-12-31 17:02:23 +00:00
parent 220a4e5c9d
commit 175a51a76e

View File

@ -59,28 +59,28 @@ import org.apache.poi.hssf.record.PrintSetupRecord;
* <P> * <P>
* Paper size constants have been added for the ones I have access * Paper size constants have been added for the ones I have access
* to. They follow as:<br> * to. They follow as:<br>
* public final short LETTER_PAPERSIZE = 1;<br> * public static final short LETTER_PAPERSIZE = 1;<br>
* public final short LEGAL_PAPERSIZE = 5;<br> * public static final short LEGAL_PAPERSIZE = 5;<br>
* public final short EXECUTIVE_PAPERSIZE = 7;<br> * public static final short EXECUTIVE_PAPERSIZE = 7;<br>
* public final short A4_PAPERSIZE = 9;<br> * public static final short A4_PAPERSIZE = 9;<br>
* public final short A5_PAPERSIZE = 11;<br> * public static final short A5_PAPERSIZE = 11;<br>
* public final short ENVELOPE_10_PAPERSIZE = 20;<br> * public static final short ENVELOPE_10_PAPERSIZE = 20;<br>
* public final short ENVELOPE_DL_PAPERSIZE = 27;<br> * public static final short ENVELOPE_DL_PAPERSIZE = 27;<br>
* public final short ENVELOPE_CS_PAPERSIZE = 28;<br> * public static final short ENVELOPE_CS_PAPERSIZE = 28;<br>
* public final short ENVELOPE_MONARCH_PAPERSIZE = 37;<br> * public static final short ENVELOPE_MONARCH_PAPERSIZE = 37;<br>
* <P> * <P>
* @author Shawn Laubach (slaubach at apache dot org) * @author Shawn Laubach (slaubach at apache dot org)
*/ */
public class HSSFPrintSetup extends Object { public class HSSFPrintSetup extends Object {
public final short LETTER_PAPERSIZE = 1; public static final short LETTER_PAPERSIZE = 1;
public final short LEGAL_PAPERSIZE = 5; public static final short LEGAL_PAPERSIZE = 5;
public final short EXECUTIVE_PAPERSIZE = 7; public static final short EXECUTIVE_PAPERSIZE = 7;
public final short A4_PAPERSIZE = 9; public static final short A4_PAPERSIZE = 9;
public final short A5_PAPERSIZE = 11; public static final short A5_PAPERSIZE = 11;
public final short ENVELOPE_10_PAPERSIZE = 20; public static final short ENVELOPE_10_PAPERSIZE = 20;
public final short ENVELOPE_DL_PAPERSIZE = 27; public static final short ENVELOPE_DL_PAPERSIZE = 27;
public final short ENVELOPE_CS_PAPERSIZE = 28; public static final short ENVELOPE_CS_PAPERSIZE = 28;
public final short ENVELOPE_MONARCH_PAPERSIZE = 37; public static final short ENVELOPE_MONARCH_PAPERSIZE = 37;
PrintSetupRecord printSetupRecord; PrintSetupRecord printSetupRecord;
/** /**
* Constructor. Takes the low level print setup record. * Constructor. Takes the low level print setup record.