KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > poi > hdf > extractor > data > LVL


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.data;
21
22 /**
23  * Comment me
24  *
25  * @author Ryan Ackley
26  */

27
28
29 public class LVL
30 {
31   public int _iStartAt;
32   public byte _nfc;
33   byte _jc;
34   boolean _fLegal;
35   boolean _fNoRestart;
36   boolean _fPrev;
37   boolean _fPrevSpace;
38   boolean _fWord6;
39   public byte[] _rgbxchNums = new byte[9];
40   public byte _ixchFollow;
41   public byte[] _chpx;
42   public byte[] _papx;
43   public char[] _xst;
44   public short _istd;
45
46   //byte _cbGrpprlChpx;
47
//byte _cbGrpprlPapx;
48

49
50   public LVL()
51   {
52   }
53   public Object JavaDoc clone()
54   {
55     LVL obj = null;
56     try
57     {
58       obj = (LVL)super.clone();
59     }
60     catch(Exception JavaDoc e)
61     {
62       e.printStackTrace();
63     }
64     return obj;
65   }
66 }
67
Popular Tags