public PivotTableHandle[] getPivotTables()
throws PivotTableNotFoundException{
Sxview[] sxv = mybook.getAllPivotTableViews();
if(sxv == null ||
sxv.length==0)
throw new PivotTableNotFoundException("There are no PivotTables defined in: " + this.getName());
PivotTableHandle[] pth = new PivotTableHandle[sxv.length];
for(int t = 0;t<pth.length;t++){
pth[t] = new PivotTableHandle(sxv[t],this);
}
return pth;