Package com.google.gwt.cell.client
Class TextCell
- java.lang.Object
-
- com.google.gwt.cell.client.AbstractCell<C>
-
- com.google.gwt.cell.client.AbstractSafeHtmlCell<java.lang.String>
-
- com.google.gwt.cell.client.TextCell
-
- All Implemented Interfaces:
Cell<java.lang.String>
public class TextCell extends AbstractSafeHtmlCell<java.lang.String>
ACellused to render text.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.google.gwt.cell.client.Cell
Cell.Context
-
-
Constructor Summary
Constructors Constructor Description TextCell()Constructs a TextCell that uses aSimpleSafeHtmlRendererto render its text.TextCell(SafeHtmlRenderer<java.lang.String> renderer)Constructs a TextCell that uses the providedSafeHtmlRendererto render its text.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidrender(Cell.Context context, SafeHtml value, SafeHtmlBuilder sb)Render the cell contents after they have been converted toSafeHtmlform.-
Methods inherited from class com.google.gwt.cell.client.AbstractSafeHtmlCell
getRenderer, render
-
Methods inherited from class com.google.gwt.cell.client.AbstractCell
dependsOnSelection, getConsumedEvents, handlesSelection, isEditing, onBrowserEvent, onEnterKeyDown, resetFocus, setValue
-
-
-
-
Constructor Detail
-
TextCell
public TextCell()
Constructs a TextCell that uses aSimpleSafeHtmlRendererto render its text.
-
TextCell
public TextCell(SafeHtmlRenderer<java.lang.String> renderer)
Constructs a TextCell that uses the providedSafeHtmlRendererto render its text.- Parameters:
renderer- aSafeHtmlRendererinstance
-
-
Method Detail
-
render
public void render(Cell.Context context, SafeHtml value, SafeHtmlBuilder sb)
Description copied from class:AbstractSafeHtmlCellRender the cell contents after they have been converted toSafeHtmlform.- Specified by:
renderin classAbstractSafeHtmlCell<java.lang.String>- Parameters:
context- the original context to rendervalue- aSafeHtmlstringsb- theSafeHtmlBuilderto be written to
-
-