try {
WhiteCell wc = (WhiteCell)_cellMap.get(p);
switch (type) {
case ITable.VALUE_NORMAL: wc.normalValue = value; break;
case ITable.VALUE_TRUE: wc.trueValue = value; break;
default: throw new TableException("invalid type "+type);
}
} catch (Throwable t) {
throw new TableException("writeCell", t);
}
return false;
}