* @see org.eclipse.jst.pagedesigner.css2.layout.ICSSPainter#paintFigure(org.eclipse.draw2d.Graphics)
*/
public void paintFigure(Graphics g) {
ICSSStyle style = this.getCSSStyle();
if (style != null) {
ITagEditInfo info = (ITagEditInfo) style
.getAdapter(ITagEditInfo.class);
if (info != null && info.needTableDecorator()) {
List cells = _tableInfo.getCells();
for (int i = 0, size = cells.size(); i < size; i++) {
TableCellInfo cellInfo = (TableCellInfo) cells.get(i);
IFigure cellfigure = cellInfo.getFigure();
Rectangle rect = cellfigure.getBounds().getCopy();