1 2 17 18 19 20 package org.apache.poi.hdf.extractor; 21 22 27 28 public class PropertySet 29 { 30 private String _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 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 |