public class SafeImageCell extends AbstractCell<SafeUri>
 An AbstractCell used to render an image by using a SafeUri.
 
 If the images being displayed are static or available at compile time, using
 ImageResourceCell will usually be more efficient.
 
ImageCell, 
ImageResourceCell| Modifier and Type | Class and Description | 
|---|---|
| (package private) static interface  | SafeImageCell.Template | 
Cell.Context| Constructor and Description | 
|---|
| SafeImageCell()Construct a new SafeImageCell. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | render(Cell.Context context,
      SafeUri value,
      SafeHtmlBuilder sb)Render a cell as HTML into a  SafeHtmlBuilder, suitable for passing
 toElement.setInnerHTML(String)on a container element. | 
dependsOnSelection, getConsumedEvents, handlesSelection, isEditing, onBrowserEvent, onEnterKeyDown, resetFocus, setValuepublic void render(Cell.Context context, SafeUri value, SafeHtmlBuilder sb)
CellSafeHtmlBuilder, suitable for passing
 to Element.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.
render in interface Cell<SafeUri>render in class AbstractCell<SafeUri>context - the Cell.Context of the cellvalue - the cell value to be renderedsb - the SafeHtmlBuilder to be written to