Class AbstractSafeHtmlCell<C>

java.lang.Object
com.google.gwt.cell.client.AbstractCell<C>
com.google.gwt.cell.client.AbstractSafeHtmlCell<C>
Type Parameters:
C - the type that this Cell represents
All Implemented Interfaces:
Cell<C>
Direct Known Subclasses:
ButtonCell, ClickableTextCell, TextCell

public abstract class AbstractSafeHtmlCell<C> extends AbstractCell<C>
A superclass for Cells that render or escape a String argument as HTML.
  • Constructor Details

    • AbstractSafeHtmlCell

      public AbstractSafeHtmlCell(SafeHtmlRenderer<C> renderer, String... consumedEvents)
      Construct an AbstractSafeHtmlCell using a given SafeHtmlRenderer that will consume a given set of events.
      Parameters:
      renderer - a SafeHtmlRenderer
      consumedEvents - a varargs list of event names
    • AbstractSafeHtmlCell

      public AbstractSafeHtmlCell(SafeHtmlRenderer<C> renderer, Set<String> consumedEvents)
      Construct an AbstractSafeHtmlCell using a given SafeHtmlRenderer that will consume a given set of events.
      Parameters:
      renderer - a SafeHtmlRenderer
      consumedEvents - a Set of event names
  • Method Details