KickJava   Java API By Example, From Geeks To Geeks.

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


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 PropertySet
29 {
30     private String JavaDoc _name;
31     private int _type;
32     private int _previous;
33     private int _next;
34     private int _dir;
35     private int _sb;
36     private int _size;
37     private int _num;
38
39     public PropertySet(String JavaDoc name, int type, int previous, int next, int dir,
40                        int sb, int size, int num)
41     {
42         _name = name;
43         _type = type;
44         _previous = previous;
45         _next = next;
46         _dir = dir;
47         _sb = sb;
48         _size = size;
49         _num = num;
50     }
51     public int getSize()
52     {
53         return _size;
54     }
55     public int getStartBlock()
56     {
57         return _sb;
58     }
59 }
60
Popular Tags