FileDocCategorySizeDatePackage
PropertyNode.javaAPI DocApache Poi 3.0.11739Mon Jan 01 18:55:24 GMT 2007org.apache.poi.hdf.extractor.util

PropertyNode

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

Fields Summary
private byte[]
_grpprl
private int
_fcStart
private int
_fcEnd
Constructors Summary
public PropertyNode(int fcStart, int fcEnd, byte[] grpprl)

      _fcStart = fcStart;
      _fcEnd = fcEnd;
      _grpprl = grpprl;
  
Methods Summary
public intcompareTo(java.lang.Object o)

      int fcStart = ((PropertyNode)o).getStart();
      if(_fcStart == fcStart)
      {
        return 0;
      }
      else if(_fcStart < fcStart)
      {
        return -1;
      }
      else
      {
        return 1;
      }
  
public intgetEnd()

    return _fcEnd;
  
protected byte[]getGrpprl()

    return _grpprl;
  
public intgetStart()

      return _fcStart;