Package | Description |
---|---|
com.google.gwt.cell.client | |
com.google.gwt.user.cellview.client |
The "cellview" widget set.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<HasCell<C,?>> |
CompositeCell.getHasCells()
Returns the readonly list of
HasCell 's that make up this composite. |
Modifier and Type | Method and Description |
---|---|
protected <X> void |
CompositeCell.render(Cell.Context context,
C value,
SafeHtmlBuilder sb,
HasCell<C,X> hasCell)
Render the composite cell as HTML into a
SafeHtmlBuilder , suitable
for passing to Element.setInnerHTML(java.lang.String) on a container element. |
Constructor and Description |
---|
CompositeCell(java.util.List<HasCell<C,?>> hasCells)
Construct a new
CompositeCell . |
Modifier and Type | Class and Description |
---|---|
class |
Column<T,C>
A representation of a column in a table.
|
class |
IdentityColumn<T>
A passthrough column, useful for giving cells access to the entire row
object.
|
class |
TextColumn<T>
A column that displays its contents with a
TextCell and does not make
use of view data. |
Modifier and Type | Method and Description |
---|---|
HasCell<T,?> |
CellTableBuilder.getColumn(Cell.Context context,
T rowValue,
Element elem)
Return the column containing an element.
|
HasCell<T,?> |
AbstractCellTableBuilder.getColumn(Cell.Context context,
T rowValue,
Element elem)
Return the column containing an element.
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection<HasCell<T,?>> |
CellTableBuilder.getColumns()
Return all the columns that this table builder has rendered.
|
java.util.Collection<HasCell<T,?>> |
AbstractCellTableBuilder.getColumns()
Return all the columns that this table builder has renderred.
|
Modifier and Type | Method and Description |
---|---|
<C> void |
AbstractCellTableBuilder.renderCell(ElementBuilderBase<?> builder,
Cell.Context context,
HasCell<T,C> column,
T rowValue)
Render the cell into an
ElementBuilderBase . |