Uses of Interface
com.google.gwt.cell.client.Cell
-
Packages that use Cell Package Description com.google.gwt.cell.client com.google.gwt.user.cellview.client The "cellview" widget set.com.google.gwt.view.client Classes and interfaces used by thecellview
widget set. -
-
Uses of Cell in com.google.gwt.cell.client
Classes in com.google.gwt.cell.client that implement Cell Modifier and Type Class Description class
AbstractCell<C>
A default implementation of theCell
interface.class
AbstractEditableCell<C,V>
A default implementation of theCell
interface used for editable cells that need to save view data state for specific values.class
AbstractInputCell<C,V>
AnAbstractCell
used to render input elements that can receive focus.class
AbstractSafeHtmlCell<C>
A superclass forCell
s that render or escape a String argument as HTML.class
ActionCell<C>
A cell that renders a button and takes a delegate to perform actions on mouseUp.class
ButtonCell
ACell
used to render a button.class
ButtonCellBase<C>
Base class for button Cells.class
CheckboxCell
ACell
used to render a checkbox.class
ClickableTextCell
ACell
used to render text.class
CompositeCell<C>
class
DateCell
ACell
used to renderDate
s.class
DatePickerCell
ACell
used to render and editDate
s.class
EditTextCell
An editable text cell.class
IconCellDecorator<C>
class
ImageCell
AnAbstractCell
used to render an image.class
ImageLoadingCell
AnAbstractCell
used to render an image.class
ImageResourceCell
AnAbstractCell
used to render anImageResource
.class
NumberCell
ACell
used to render formatted numbers.class
SafeHtmlCell
ACell
used to render safe HTML markup.class
SafeImageCell
AnAbstractCell
used to render an image by using aSafeUri
.class
SelectionCell
ACell
used to render a drop-down list.class
TextButtonCell
TextButtonCell
is a simple button with text content.class
TextCell
ACell
used to render text.class
TextInputCell
AnAbstractCell
used to render a text input.Methods in com.google.gwt.cell.client that return Cell Modifier and Type Method Description Cell<C>
HasCell. getCell()
Returns theCell
of type C.Constructors in com.google.gwt.cell.client with parameters of type Cell Constructor Description IconCellDecorator(ImageResource icon, Cell<C> cell)
Construct a newIconCellDecorator
.IconCellDecorator(ImageResource icon, Cell<C> cell, HasVerticalAlignment.VerticalAlignmentConstant valign, int spacing)
Construct a newIconCellDecorator
. -
Uses of Cell in com.google.gwt.user.cellview.client
Methods in com.google.gwt.user.cellview.client that return Cell Modifier and Type Method Description protected Cell<T>
CellList. getCell()
Return the cell used to render each item.Cell<C>
CellWidget. getCell()
Get theCell
wrapped by this widget.Cell<C>
Column. getCell()
Returns theCell
responsible for rendering items in the column.Cell<H>
Header. getCell()
Return theCell
responsible for rendering items in the header.Methods in com.google.gwt.user.cellview.client with parameters of type Cell Modifier and Type Method Description protected boolean
AbstractHasData. cellConsumesEventType(Cell<?> cell, java.lang.String eventType)
Check if a cell consumes the specified event type.Constructors in com.google.gwt.user.cellview.client with parameters of type Cell Constructor Description BrowserCellList(Cell<T> cell, int level, ProvidesKey<T> keyProvider)
CellList(Cell<T> cell)
Construct a newCellList
.CellList(Cell<T> cell, CellList.Resources resources)
Construct a newCellList
with the specifiedCellList.Resources
.CellList(Cell<T> cell, CellList.Resources resources, ProvidesKey<T> keyProvider)
CellList(Cell<T> cell, ProvidesKey<T> keyProvider)
Construct a newCellList
with the specifiedkey provider
.CellWidget(Cell<C> cell)
Construct a newCellWidget
with the specified cell and an initial value ofnull
.CellWidget(Cell<C> cell, C initialValue)
Construct a newCellWidget
with the specified cell and initial value.CellWidget(Cell<C> cell, ProvidesKey<C> keyProvider)
Construct a newCellWidget
with the specified cell and key provider, and an initial value ofnull
.CellWidget(Cell<C> cell, C initialValue, ProvidesKey<C> keyProvider)
Construct a newCellWidget
with the specified cell, initial value, and key provider.CellWidget(Cell<C> cell, C initialValue, ProvidesKey<C> keyProvider, Element elem)
Creates aCellWidget
with the specified cell, initial value, key provider, using the specified element as the wrapper around the cell.Column(Cell<C> cell)
Construct a new Column with a givenCell
.Header(Cell<H> cell)
Construct a Header with a givenCell
.IdentityColumn(Cell<T> cell)
Construct a new IdentityColumn with a givenCell
. -
Uses of Cell in com.google.gwt.view.client
Methods in com.google.gwt.view.client that return Cell Modifier and Type Method Description Cell<T>
TreeViewModel.DefaultNodeInfo. getCell()
Cell<T>
TreeViewModel.NodeInfo. getCell()
Get theCell
used to render the children of this node.Constructors in com.google.gwt.view.client with parameters of type Cell Constructor Description DefaultNodeInfo(AbstractDataProvider<T> dataProvider, Cell<T> cell)
Construct a newTreeViewModel.DefaultNodeInfo
.DefaultNodeInfo(AbstractDataProvider<T> dataProvider, Cell<T> cell, SelectionModel<? super T> selectionModel, ValueUpdater<T> valueUpdater)
Construct a newTreeViewModel.DefaultNodeInfo
.DefaultNodeInfo(AbstractDataProvider<T> dataProvider, Cell<T> cell, SelectionModel<? super T> selectionModel, CellPreviewEvent.Handler<T> selectionEventManager, ValueUpdater<T> valueUpdater)
Construct a newTreeViewModel.DefaultNodeInfo
.
-