KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > poi > hdf > extractor > SEP


1
2 /* ====================================================================
3    Copyright 2002-2004 Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16 ==================================================================== */

17         
18
19
20 package org.apache.poi.hdf.extractor;
21
22 /**
23  * Comment me
24  *
25  * @author Ryan Ackley
26  */

27
28 public class SEP
29 {
30   int _index;
31   byte _bkc;
32   boolean _fTitlePage;
33   boolean _fAutoPgn;
34   byte _nfcPgn;
35   boolean _fUnlocked;
36   byte _cnsPgn;
37   boolean _fPgnRestart;
38   boolean _fEndNote;
39   byte _lnc;
40   byte _grpfIhdt;
41   short _nLnnMod;
42   int _dxaLnn;
43   short _dxaPgn;
44   short _dyaPgn;
45   boolean _fLBetween;
46   byte _vjc;
47   short _dmBinFirst;
48   short _dmBinOther;
49   short _dmPaperReq;
50   short[] _brcTop = new short[2];
51   short[] _brcLeft = new short[2];
52   short[] _brcBottom = new short[2];
53   short[] _brcRight = new short[2];
54   boolean _fPropMark;
55   int _dxtCharSpace;
56   int _dyaLinePitch;
57   short _clm;
58   byte _dmOrientPage;
59   byte _iHeadingPgn;
60   short _pgnStart;
61   short _lnnMin;
62   short _wTextFlow;
63   short _pgbProp;
64   int _xaPage;
65   int _yaPage;
66   int _dxaLeft;
67   int _dxaRight;
68   int _dyaTop;
69   int _dyaBottom;
70   int _dzaGutter;
71   int _dyaHdrTop;
72   int _dyaHdrBottom;
73   short _ccolM1;
74   boolean _fEvenlySpaced;
75   int _dxaColumns;
76   int[] _rgdxaColumnWidthSpacing;
77   byte _dmOrientFirst;
78   byte[] _olstAnn;
79
80
81
82   public SEP()
83   {
84       _bkc = 2;
85       _dyaPgn = 720;
86       _dxaPgn = 720;
87       _fEndNote = true;
88       _fEvenlySpaced = true;
89       _xaPage = 12240;
90       _yaPage = 15840;
91       _dyaHdrTop = 720;
92       _dyaHdrBottom = 720;
93       _dmOrientPage = 1;
94       _dxaColumns = 720;
95       _dyaTop = 1440;
96       _dxaLeft = 1800;
97       _dyaBottom = 1440;
98       _dxaRight = 1800;
99       _pgnStart = 1;
100
101   }
102 }
103
Popular Tags