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

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

Introduction

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

Usage

From source file com.novartis.pcs.ontology.webapp.client.view.IconActionCell.java

public class IconActionCell<C> extends ActionCell<C> {
    private static final ImageResourceRenderer renderer = new ImageResourceRenderer();
    private final SafeHtml iconHtml;

    public IconActionCell(ImageResource icon, Delegate<C> delegate) {
        super("", delegate);

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

public class StyledButtonCell<C> extends ActionCell<C> {
    private String style;
    final private String tip;
    private String text = null;
    private Element eventTarget = null;
    private Context context;

From source file org.jboss.as.console.client.shared.deployment.DeploymentCommandCell.java

/**
 * Cell that renders a button capable of firing off a DeploymentCommand.
 *
 * @author Stan Silvert <ssilvert@redhat.com> (C) 2011 Red Hat Inc.
 */
public class DeploymentCommandCell extends ActionCell<DeploymentRecord> {

From source file org.opencms.gwt.client.ui.history.CmsButtonCell.java

/**
 * Cell class for rendering a button inside a cell table.<p>
 *
 * @param <T> the cell type
 */
public class CmsButtonCell<T> extends ActionCell<T> {