package

com.google.gwt.cell.client

Standard Cell subclasses used by the cellview widgets. The available cell types are:

In addition to cells, this package provides the following interfaces:

Interfaces

ActionCell.Delegate<T> The delegate that will handle events from the cell. 
Cell<C> A light weight representation of a renderable object. 
FieldUpdater<T, C> A FieldUpdater may be added to a Column to update a particular field of a data item. 
HasCell<T, C> An interface for extracting a value of type C from an underlying data value of type T, provide a Cell to render that value, and provide a FieldUpdater to perform notification of updates to the cell. 
ImageLoadingCell.Renderers The renderers used by this cell. 
ValueUpdater<C> A ValueUpdater may be added to a Cell to provide updated data. 

Classes

AbstractCell<C> A default implementation of the Cell interface. 
AbstractEditableCell<C, V> A default implementation of the Cell interface used for editable cells that need to save view data state for specific values. 
AbstractInputCell<C, V> An AbstractCell used to render input elements that can receive focus. 
AbstractSafeHtmlCell<C> A superclass for Cells that render or escape a String argument as HTML. 
ActionCell<C> A cell that renders a button and takes a delegate to perform actions on mouseUp. 
ButtonCell A Cell used to render a button. 
Cell.Context Contains information about the context of the Cell. 
CheckboxCell A Cell used to render a checkbox. 
ClickableTextCell A Cell used to render text. 
CompositeCell<C>

A Cell that is composed of other Cells. 

DateCell A Cell used to render Dates. 
DatePickerCell A Cell used to render and edit Dates. 
EditTextCell An editable text cell. 
IconCellDecorator<C> A Cell decorator that adds an icon to another Cell
ImageCell

An AbstractCell used to render an image. 

ImageLoadingCell An AbstractCell used to render an image. 
ImageLoadingCell.DefaultRenderers The default SafeHtmlRenderers
ImageResourceCell An AbstractCell used to render an ImageResource
NumberCell A Cell used to render formatted numbers. 
SafeHtmlCell A Cell used to render safe HTML markup. 
SelectionCell A Cell used to render a drop-down list. 
TextCell A Cell used to render text. 
TextInputCell An AbstractCell used to render a text input. 
TextInputCell.ViewData The ViewData for this cell.