GWT 2.4.0

Uses of Class
com.google.gwt.dom.client.TableSectionElement

Packages that use TableSectionElement
com.google.gwt.dom.client Classes for low-level DOM programming. 
com.google.gwt.user.cellview.client The "cellview" widget set. 
 

Uses of TableSectionElement in com.google.gwt.dom.client
 

Methods in com.google.gwt.dom.client that return TableSectionElement
static TableSectionElement TableSectionElement.as(Element elem)
          Assert that the given Element is compatible with this class and automatically typecast it.
 TableSectionElement Document.createTBodyElement()
          Creates a <tbody> element.
 TableSectionElement TableElement.createTFoot()
          Create a table footer row or return an existing one.
 TableSectionElement Document.createTFootElement()
          Creates a <tfoot> element.
 TableSectionElement TableElement.createTHead()
          Create a table header row or return an existing one.
 TableSectionElement Document.createTHeadElement()
          Creates a <thead> element.
 TableSectionElement TableElement.getTFoot()
          The table's TFOOT, or null if none exists.
 TableSectionElement TableElement.getTHead()
          The table's THEAD, or null if none exists.
 

Methods in com.google.gwt.dom.client that return types with arguments of type TableSectionElement
 NodeList<TableSectionElement> TableElement.getTBodies()
          Returns a collection of the table bodies (including implicit ones).
 

Methods in com.google.gwt.dom.client with parameters of type TableSectionElement
 void TableElement.setTFoot(TableSectionElement tFoot)
          The table's TFOOT, or null if none exists.
 void TableElement.setTHead(TableSectionElement tHead)
          The table's THEAD, or null if none exists.
 

Uses of TableSectionElement in com.google.gwt.user.cellview.client
 

Methods in com.google.gwt.user.cellview.client that return TableSectionElement
protected abstract  TableSectionElement AbstractCellTable.getTableBodyElement()
          Get the tbody element that contains the render row values.
protected  TableSectionElement CellTable.getTableBodyElement()
           
protected  TableSectionElement DataGrid.getTableBodyElement()
           
protected abstract  TableSectionElement AbstractCellTable.getTableFootElement()
          Get the tfoot element that contains the footers.
protected  TableSectionElement CellTable.getTableFootElement()
           
protected  TableSectionElement DataGrid.getTableFootElement()
           
protected abstract  TableSectionElement AbstractCellTable.getTableHeadElement()
          Get the thead element that contains theh eaders.
protected  TableSectionElement CellTable.getTableHeadElement()
           
protected  TableSectionElement DataGrid.getTableHeadElement()
           
 


GWT 2.4.0