FileDocCategorySizeDatePackage
RefAPtg.javaAPI DocApache Poi 3.0.11985Mon Jan 01 12:39:40 GMT 2007org.apache.poi.hssf.record.formula

RefAPtg

public class RefAPtg extends ReferencePtg
RefNAPtg
author
Jason Height (jheight at chariot dot net dot au)

Fields Summary
public static final byte
sid
Constructors Summary
protected RefAPtg()


      
      super();
    
public RefAPtg(short row, short column, boolean isRowRelative, boolean isColumnRelative)

      super(row, column, isRowRelative, isColumnRelative);
    
public RefAPtg(RecordInputStream in)

      super(in);
    
Methods Summary
public java.lang.Objectclone()

      RefAPtg ptg = new RefAPtg();
      ptg.setRow(getRow());
      ptg.setColumnRaw(getColumnRaw());
      ptg.setClass(ptgClass);
      return ptg;
    
public java.lang.StringgetRefPtgName()

      return "RefAPtg";