public class FlexTable extends HTMLTable
  
 
public class FlexTableExample implements EntryPoint {
  public void onModuleLoad() {
    // Tables have no explicit size -- they resize automatically on demand.
    FlexTable t = new FlexTable();
    // Put some text at the table's extremes.  This forces the table to be
    // 3 by 3.
    t.setText(0, 0, "upper-left corner");
    t.setText(2, 2, "bottom-right corner");
    // Let's put a button in the middle...
    t.setWidget(1, 0, new Button("Wide Button"));
    // ...and set it's column span so that it takes up the whole row.
    t.getFlexCellFormatter().setColSpan(1, 0, 3);
    RootPanel.get().add(t);
  }
}
| Modifier and Type | Class and Description | 
|---|---|
| class  | FlexTable.FlexCellFormatterFlexTable-specific implementation of  HTMLTable.CellFormatter. | 
HTMLTable.Cell, HTMLTable.CellFormatter, HTMLTable.ColumnFormatter, HTMLTable.RowFormatterUIObject.DebugIdImpl, UIObject.DebugIdImplEnabledHasWidgets.ForIsWidgeteventsToSinkDEBUG_ID_PREFIX, MISSING_ELEMENT_ERROR, SETELEMENT_TWICE_ERROR| Constructor and Description | 
|---|
| FlexTable() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | addCell(int row)Appends a cell to the specified row. | 
| int | getCellCount(int row)Gets the number of cells on a given row. | 
| FlexTable.FlexCellFormatter | getFlexCellFormatter()Explicitly gets the  FlexTable.FlexCellFormatter. | 
| int | getRowCount()Gets the number of rows. | 
| void | insertCell(int beforeRow,
          int beforeColumn)Inserts a cell into the FlexTable. | 
| int | insertRow(int beforeRow)Inserts a row into the FlexTable. | 
| protected void | prepareCell(int row,
           int column)Ensure that the cell exists. | 
| protected void | prepareRow(int row)Ensure that the row exists. | 
| void | removeAllRows()Remove all rows in this table. | 
| void | removeCell(int row,
          int col)Removes the specified cell from the table. | 
| void | removeCells(int row,
           int column,
           int num)Removes a number of cells from a row in the table. | 
| void | removeRow(int row)Removes the specified row from the table. | 
addCells, addClickHandler, addDoubleClickHandler, addDragEndHandler, addDragEnterHandler, addDragHandler, addDragLeaveHandler, addDragOverHandler, addDragStartHandler, addDropHandler, addTableListener, checkCellBounds, checkRowBounds, clear, clear, clearCell, createCell, getBodyElement, getCellForEvent, getCellFormatter, getCellPadding, getCellSpacing, getColumnFormatter, getDOMCellCount, getDOMCellCount, getDOMCellCount, getDOMRowCount, getDOMRowCount, getDOMRowCount, getEventTargetCell, getHTML, getRowFormatter, getText, getWidget, insertCells, internalClearCell, internalClearCell, isCellPresent, iterator, onEnsureDebugId, prepareColumn, remove, removeTableListener, setBorderWidth, setCellFormatter, setCellPadding, setCellSpacing, setColumnFormatter, setHTML, setHTML, setRowFormatter, setText, setWidget, setWidgetadd, add, adopt, doAttachChildren, doDetachChildren, orphan, removeaddAttachHandler, addBitlessDomHandler, addDomHandler, addHandler, asWidget, asWidgetOrNull, createHandlerManager, delegateEvent, ensureHandlers, fireEvent, getHandlerCount, getHandlerManager, getLayoutData, getParent, isAttached, isOrWasAttached, onAttach, onBrowserEvent, onDetach, onLoad, onUnload, removeFromParent, replaceElement, setLayoutData, setParent, sinkEvents, unsinkEventsaddStyleDependentName, addStyleName, ensureDebugId, ensureDebugId, ensureDebugId, getAbsoluteLeft, getAbsoluteTop, getElement, getOffsetHeight, getOffsetWidth, getStyleElement, getStyleName, getStyleName, getStylePrimaryName, getStylePrimaryName, getTitle, isVisible, isVisible, removeStyleDependentName, removeStyleName, resolvePotentialElement, setElement, setElement, setHeight, setPixelSize, setSize, setStyleDependentName, setStyleName, setStyleName, setStyleName, setStyleName, setStylePrimaryName, setStylePrimaryName, setTitle, setVisible, setVisible, setWidth, sinkBitlessEvent, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitfireEventpublic void addCell(int row)
row - the row to which the new cell will be addedjava.lang.IndexOutOfBoundsExceptionpublic int getCellCount(int row)
getCellCount in class HTMLTablerow - the row whose cells are to be countedjava.lang.IndexOutOfBoundsExceptionpublic FlexTable.FlexCellFormatter getFlexCellFormatter()
FlexTable.FlexCellFormatter. The results of
 HTMLTable.getCellFormatter() may also be downcast to a
 FlexTable.FlexCellFormatter.public int getRowCount()
getRowCount in class HTMLTablepublic void insertCell(int beforeRow,
                       int beforeColumn)
insertCell in class HTMLTablebeforeRow - the cell's rowbeforeColumn - the cell's columnpublic int insertRow(int beforeRow)
public void removeAllRows()
public void removeCell(int row,
                       int col)
HTMLTableremoveCell in class HTMLTablerow - the row of the cell to removecol - the column of cell to removepublic void removeCells(int row,
                        int column,
                        int num)
row - the row of the cells to be removedcolumn - the column of the first cell to be removednum - the number of cells to be removedjava.lang.IndexOutOfBoundsExceptionpublic void removeRow(int row)
HTMLTableprotected void prepareCell(int row,
                           int column)
prepareCell in class HTMLTablerow - the row to prepare.column - the column to prepare.java.lang.IndexOutOfBoundsException - if the row is negativeprotected void prepareRow(int row)
prepareRow in class HTMLTablerow - The row to prepare.java.lang.IndexOutOfBoundsException - if the row is negative