Uses of Interface
com.google.gwt.dom.builder.shared.TableRowBuilder
-
Packages that use TableRowBuilder Package Description com.google.gwt.dom.builder.client Classes used to build DOM elements.com.google.gwt.dom.builder.shared Classes used to build DOM elements.com.google.gwt.user.cellview.client The "cellview" widget set. -
-
Uses of TableRowBuilder in com.google.gwt.dom.builder.client
Classes in com.google.gwt.dom.builder.client that implement TableRowBuilder Modifier and Type Class Description class
DomTableRowBuilder
DOM-based implementation ofTableRowBuilder
.Methods in com.google.gwt.dom.builder.client that return TableRowBuilder Modifier and Type Method Description TableRowBuilder
DomTableRowBuilder. align(java.lang.String align)
TableRowBuilder
DomTableRowBuilder. ch(java.lang.String ch)
TableRowBuilder
DomTableRowBuilder. chOff(java.lang.String chOff)
TableRowBuilder
DomTableRowBuilder. html(SafeHtml html)
TableRowBuilder
DomElementBuilderBase. startTR()
TableRowBuilder
DomTableRowBuilder. text(java.lang.String text)
TableRowBuilder
DomTableRowBuilder. vAlign(java.lang.String vAlign)
-
Uses of TableRowBuilder in com.google.gwt.dom.builder.shared
Classes in com.google.gwt.dom.builder.shared that implement TableRowBuilder Modifier and Type Class Description class
HtmlTableRowBuilder
HTML-based implementation ofTableRowBuilder
.Methods in com.google.gwt.dom.builder.shared that return TableRowBuilder Modifier and Type Method Description TableRowBuilder
HtmlTableRowBuilder. align(java.lang.String align)
TableRowBuilder
TableRowBuilder. align(java.lang.String align)
Horizontal alignment of data within cells of this row.TableRowBuilder
HtmlTableRowBuilder. ch(java.lang.String ch)
TableRowBuilder
TableRowBuilder. ch(java.lang.String ch)
Alignment character for cells in a column.TableRowBuilder
HtmlTableRowBuilder. chOff(java.lang.String chOff)
TableRowBuilder
TableRowBuilder. chOff(java.lang.String chOff)
Offset of alignment character.abstract TableRowBuilder
ElementBuilderFactory. createTRBuilder()
TableRowBuilder
HtmlTableRowBuilder. html(SafeHtml html)
TableRowBuilder
ElementBuilderBase. startTR()
Append a tablerow element.TableRowBuilder
HtmlElementBuilderBase. startTR()
TableRowBuilder
HtmlTableRowBuilder. text(java.lang.String text)
TableRowBuilder
HtmlTableRowBuilder. vAlign(java.lang.String vAlign)
TableRowBuilder
TableRowBuilder. vAlign(java.lang.String vAlign)
Vertical alignment of data within cells of this row. -
Uses of TableRowBuilder in com.google.gwt.user.cellview.client
Methods in com.google.gwt.user.cellview.client that return TableRowBuilder Modifier and Type Method Description TableRowBuilder
AbstractCellTableBuilder. startRow()
Start a row and return theTableRowBuilder
for this row.TableRowBuilder
AbstractCellTableBuilder. startRow(T rowValue)
Start a row and return theTableRowBuilder
for this row.protected TableRowBuilder
AbstractHeaderOrFooterBuilder. startRow()
Add a header (or footer) row to the table, below any rows previously added.Methods in com.google.gwt.user.cellview.client with parameters of type TableRowBuilder Modifier and Type Method Description protected void
AbstractCellTableBuilder. addRowAttributes(TableRowBuilder row)
Hook for subclasses to add their own attributes to each row in the table.protected void
AbstractCellTableBuilder. addRowAttributes(TableRowBuilder row, T rowValue)
Hook for subclasses to add their own attributes to each row in the table.
-