Hello all,
I'm working on my own library that use apache POI.
with 3.2-final
org.apache.poi.hssf.util.Region was deprecated and now i need to use
CellRangeAddress.
For Effective regression you should add the following.
public boolean contains(int row, short col)
{
if ((this.getLastRow() <= row) && (this.getFirstRow() >= row)
&& (this.getFirstColumn() <= col) && (this.getLastColumn()
>= col))
{
return true;
}
return false;
}
if it is ok for you tell me how can send you a patch or simple add you this
simple piece of code.
Cheers
--Filippo