01: /* ====================================================================
02: Licensed to the Apache Software Foundation (ASF) under one or more
03: contributor license agreements. See the NOTICE file distributed with
04: this work for additional information regarding copyright ownership.
05: The ASF licenses this file to You under the Apache License, Version 2.0
06: (the "License"); you may not use this file except in compliance with
07: the License. You may obtain a copy of the License at
08:
09: 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: package org.apache.poi.hdf.extractor;
19:
20: /**
21: * Comment me
22: *
23: * @author Ryan Ackley
24: */
25:
26: public class SEP {
27: int _index;
28: byte _bkc;
29: boolean _fTitlePage;
30: boolean _fAutoPgn;
31: byte _nfcPgn;
32: boolean _fUnlocked;
33: byte _cnsPgn;
34: boolean _fPgnRestart;
35: boolean _fEndNote;
36: byte _lnc;
37: byte _grpfIhdt;
38: short _nLnnMod;
39: int _dxaLnn;
40: short _dxaPgn;
41: short _dyaPgn;
42: boolean _fLBetween;
43: byte _vjc;
44: short _dmBinFirst;
45: short _dmBinOther;
46: short _dmPaperReq;
47: short[] _brcTop = new short[2];
48: short[] _brcLeft = new short[2];
49: short[] _brcBottom = new short[2];
50: short[] _brcRight = new short[2];
51: boolean _fPropMark;
52: int _dxtCharSpace;
53: int _dyaLinePitch;
54: short _clm;
55: byte _dmOrientPage;
56: byte _iHeadingPgn;
57: short _pgnStart;
58: short _lnnMin;
59: short _wTextFlow;
60: short _pgbProp;
61: int _xaPage;
62: int _yaPage;
63: int _dxaLeft;
64: int _dxaRight;
65: int _dyaTop;
66: int _dyaBottom;
67: int _dzaGutter;
68: int _dyaHdrTop;
69: int _dyaHdrBottom;
70: short _ccolM1;
71: boolean _fEvenlySpaced;
72: int _dxaColumns;
73: int[] _rgdxaColumnWidthSpacing;
74: byte _dmOrientFirst;
75: byte[] _olstAnn;
76:
77: public SEP() {
78: _bkc = 2;
79: _dyaPgn = 720;
80: _dxaPgn = 720;
81: _fEndNote = true;
82: _fEvenlySpaced = true;
83: _xaPage = 12240;
84: _yaPage = 15840;
85: _dyaHdrTop = 720;
86: _dyaHdrBottom = 720;
87: _dmOrientPage = 1;
88: _dxaColumns = 720;
89: _dyaTop = 1440;
90: _dxaLeft = 1800;
91: _dyaBottom = 1440;
92: _dxaRight = 1800;
93: _pgnStart = 1;
94:
95: }
96: }
|