/**
  * Adds an Image as Cell.
  *
  * @param image the <CODE>Image</CODE> to add to the table. This image will fit in the cell
  */
 public void addCell(Image image) {
   defaultCell.setImage(image);
   addCell(defaultCell);
   defaultCell.setImage(null);
 }