1 2 17 18 19 package org.apache.poi.hdf.extractor; 20 21 import org.apache.poi.hdf.extractor.util.*; 22 23 28 29 public class TextPiece extends PropertyNode implements Comparable  30 { 31 private boolean _usesUnicode; 32 private int _length; 33 34 public TextPiece(int start, int length, boolean unicode) 35 { 36 super(start, start + length, null); 37 _usesUnicode = unicode; 38 _length = length; 39 42 } 43 public boolean usesUnicode() 44 { 45 return _usesUnicode; 46 } 47 48 public int compareTo(Object obj) { 49 return 0; 50 } 51 52 } 53 | Popular Tags |