Example usage for com.google.gwt.cell.client AbstractSafeHtmlCell subclass-usage

List of usage examples for com.google.gwt.cell.client AbstractSafeHtmlCell subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.cell.client AbstractSafeHtmlCell subclass-usage.

Usage

From source file com.chinarewards.gwt.license.client.ui.HyperLinkCell.java

/**
 * A {@link Cell} used to render a button.
 */
public class HyperLinkCell extends AbstractSafeHtmlCell<String> {

    /**

From source file com.gwt2go.dev.client.ui.widget.celltree.CellTreeRooterCell.java

public class CellTreeRooterCell extends AbstractSafeHtmlCell<GotoPlacesModel> {

    /**
     * Constructs a TextCell that uses a {@link SimpleSafeHtmlRenderer} to
     * render its text.
     */

From source file com.gwtcx.client.resources.ImageCell.java

/**
 * ImageCell
 */
public class ImageCell extends AbstractSafeHtmlCell<String> {

    public interface Template extends SafeHtmlTemplates {

From source file com.qualogy.qafe.gwt.client.ui.renderer.cell.LinkCell.java

/**
 * A {@link Cell} used to render text. Clicking on the cell causes its
 * {@link ValueUpdater} to be called.
 */
public class LinkCell extends AbstractSafeHtmlCell<String> {

From source file com.qualogy.qafe.gwt.client.ui.renderer.cell.QButtonCell.java

/**
 * A {@link Cell} used to render text. Clicking on the cell causes its
 * {@link ValueUpdater} to be called.
 */
public class QButtonCell extends AbstractSafeHtmlCell<String> {

From source file com.sencha.gxt.cell.core.client.SimpleSafeHtmlCell.java

public class SimpleSafeHtmlCell<C> extends AbstractSafeHtmlCell<C> {

    public SimpleSafeHtmlCell(SafeHtmlRenderer<C> renderer, Set<String> consumedEvents) {
        super(renderer, consumedEvents);
    }

From source file gwt.material.design.client.ui.table.cell.TextCell.java

/**
 * A {@link com.google.gwt.cell.client.Cell} used to render text.
 *
 * @author Ben Dol
 */
public class TextCell extends AbstractSafeHtmlCell<String> {

From source file io.pelle.mango.client.gwt.modules.hierarchical.HierarchicalCell.java

public class HierarchicalCell extends AbstractSafeHtmlCell<DictionaryHierarchicalNodeVO>
        implements Cell<DictionaryHierarchicalNodeVO> {

    public HierarchicalCell() {
        super(HierarchicalSafeHtmlRenderer.getInstance());
    }

From source file mat.client.shared.MatButtonCell.java

/**
 * A {@link Cell} used to render a button.
 */
public class MatButtonCell extends AbstractSafeHtmlCell<String> {

    /** The Button title. */

From source file n3phele.client.widgets.IconTextCell.java

public class IconTextCell<T extends IconText> extends AbstractSafeHtmlCell<T> {
    /**
     * Constructs an cell combining an Icon put text label with a set icon size. The
     * supplied icons are scaled to the specified widthxheight to create a uniform presentation.
     * 
     */