FileDocCategorySizeDatePackage
AreaNPtg.javaAPI DocApache Poi 3.0.12424Sun Mar 11 12:59:08 GMT 2007org.apache.poi.hssf.record.formula

AreaNPtg

public class AreaNPtg extends AreaPtg
Specifies a rectangular area of cells A1:A4 for instance.
author
Jason Height (jheight at chariot dot net dot au)

Fields Summary
public static final short
sid
Constructors Summary
protected AreaNPtg()


    
    //Required for clone methods
  
public AreaNPtg(RecordInputStream in)

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

    throw new RuntimeException("Coding Error: This method should never be called. This ptg should be converted");
  
public java.lang.StringgetAreaPtgName()

    return "AreaNPtg";
  
public java.lang.StringtoFormulaString(org.apache.poi.hssf.model.Workbook book)

    throw new RuntimeException("Coding Error: This method should never be called. This ptg should be converted");
  
public voidwriteBytes(byte[] array, int offset)

    super.writeBytes(array,offset);
    //this should be a warning...there doesn't seem to be any rationale to throwing an exception here...
    //this excpeiton appears to break user defined named ranges...
    //throw new RuntimeException("Coding Error: This method should never be called. This ptg should be converted");