public ILayerCell getCellByPosition(int columnPosition, int rowPosition) {
ILayerCell cell = underlyingLayer.getCellByPosition(rowPosition,
columnPosition);
if (cell != null)
return new InvertedLayerCell(cell);
else
return null;
// return underlyingLayer.getCellByPosition(rowPosition,
// columnPosition);
}