Package com.google.gwt.cell.client
Class DateCell
- java.lang.Object
-
- com.google.gwt.cell.client.AbstractCell<java.util.Date>
-
- com.google.gwt.cell.client.DateCell
-
- All Implemented Interfaces:
Cell<java.util.Date>
public class DateCell extends AbstractCell<java.util.Date>
ACell
used to renderDate
s.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.google.gwt.cell.client.Cell
Cell.Context
-
-
Constructor Summary
Constructors Constructor Description DateCell()
Construct a newDateCell
using the formatDateTimeFormat.PredefinedFormat.DATE_FULL
and aSimpleSafeHtmlRenderer
.DateCell(DateTimeFormat format)
Construct a newDateCell
using the specified format and aSimpleSafeHtmlRenderer
.DateCell(DateTimeFormat format, TimeZone timeZone)
Construct a newDateCell
using the specified format and time zone.DateCell(DateTimeFormat format, SafeHtmlRenderer<java.lang.String> renderer)
Construct a newDateCell
using the specified format and the givenSafeHtmlRenderer
.DateCell(DateTimeFormat format, SafeHtmlRenderer<java.lang.String> renderer, TimeZone timeZone)
Construct a newDateCell
using the specified format, the givenSafeHtmlRenderer
, and the specified time zone.DateCell(SafeHtmlRenderer<java.lang.String> renderer)
Construct a newDateCell
using the formatDateTimeFormat.PredefinedFormat.DATE_FULL
and aSimpleSafeHtmlRenderer
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
render(Cell.Context context, java.util.Date value, SafeHtmlBuilder sb)
Render a cell as HTML into aSafeHtmlBuilder
, suitable for passing toElement.setInnerHTML(String)
on a container element.-
Methods inherited from class com.google.gwt.cell.client.AbstractCell
dependsOnSelection, getConsumedEvents, handlesSelection, isEditing, onBrowserEvent, onEnterKeyDown, resetFocus, setValue
-
-
-
-
Constructor Detail
-
DateCell
public DateCell()
Construct a newDateCell
using the formatDateTimeFormat.PredefinedFormat.DATE_FULL
and aSimpleSafeHtmlRenderer
.
-
DateCell
public DateCell(SafeHtmlRenderer<java.lang.String> renderer)
Construct a newDateCell
using the formatDateTimeFormat.PredefinedFormat.DATE_FULL
and aSimpleSafeHtmlRenderer
.- Parameters:
renderer
- a non-nullSafeHtmlRenderer
used to render the formatted date as HTML
-
DateCell
public DateCell(DateTimeFormat format)
Construct a newDateCell
using the specified format and aSimpleSafeHtmlRenderer
.- Parameters:
format
- theDateTimeFormat
used to render the date
-
DateCell
public DateCell(DateTimeFormat format, SafeHtmlRenderer<java.lang.String> renderer)
Construct a newDateCell
using the specified format and the givenSafeHtmlRenderer
.- Parameters:
format
- theDateTimeFormat
used to render the daterenderer
- a non-nullSafeHtmlRenderer
used to render the formatted date
-
DateCell
public DateCell(DateTimeFormat format, TimeZone timeZone)
Construct a newDateCell
using the specified format and time zone.- Parameters:
format
- theDateTimeFormat
used to render the datetimeZone
- theTimeZone
used to render the date, or null to use the default behavior for the local time zone and the rendered date. SeeDateTimeFormat.format(Date)
andDate.getTimezoneOffset()
-
DateCell
public DateCell(DateTimeFormat format, SafeHtmlRenderer<java.lang.String> renderer, TimeZone timeZone)
Construct a newDateCell
using the specified format, the givenSafeHtmlRenderer
, and the specified time zone.- Parameters:
format
- theDateTimeFormat
used to render the daterenderer
- a non-nullSafeHtmlRenderer
used to render the formatted datetimeZone
- theTimeZone
used to render the date, or null to use the default behavior for the local time zone and the rendered date. SeeDateTimeFormat.format(Date)
andDate.getTimezoneOffset()
-
-
Method Detail
-
render
public void render(Cell.Context context, java.util.Date value, SafeHtmlBuilder sb)
Description copied from interface:Cell
Render a cell as HTML into aSafeHtmlBuilder
, suitable for passing toElement.setInnerHTML(String)
on a container element.Note: If your cell contains natively focusable elements, such as buttons or input elements, be sure to set the tabIndex to -1 so that they do not steal focus away from the containing widget.
- Specified by:
render
in interfaceCell<java.util.Date>
- Specified by:
render
in classAbstractCell<java.util.Date>
- Parameters:
context
- theCell.Context
of the cellvalue
- the cell value to be renderedsb
- theSafeHtmlBuilder
to be written to
-
-