FileDocCategorySizeDatePackage
TextPiece.javaAPI DocApache Poi 3.0.11559Mon Jan 01 18:55:24 GMT 2007org.apache.poi.hdf.extractor

TextPiece

public class TextPiece extends PropertyNode implements Comparable
Comment me
author
Ryan Ackley

Fields Summary
private boolean
_usesUnicode
private int
_length
Constructors Summary
public TextPiece(int start, int length, boolean unicode)

    super(start, start + length, null);
      _usesUnicode = unicode;
      _length = length;
      //_fcStart = start;
      //_fcEnd = start + length;

  
Methods Summary
public intcompareTo(java.lang.Object obj)

       return 0;
   
public booleanusesUnicode()

      return _usesUnicode;