Example usage for com.google.gwt.user.cellview.client Column subclass-usage

List of usage examples for com.google.gwt.user.cellview.client Column subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.cellview.client Column subclass-usage.

Usage

From source file org.pepstock.jem.gwt.client.panels.gfs.commons.FolderLinkTextColumn.java

/**
 * 
 * @author Marco "Fuzzo" Cuccato
 *
 * @param <T> Type of rendered object
 */

From source file org.pepstock.jem.gwt.client.panels.gfs.commons.FullLinkTextColumn.java

/**
 * 
 * @author Marco "Fuzzo" Cuccato
 *
 * @param <T> Type of rendered object
 */

From source file org.roda.wui.client.common.lists.utils.TooltipTextColumn.java

public abstract class TooltipTextColumn<T> extends Column<T, String> {

    /**
     * Construct a new TextColumn.
     */
    public TooltipTextColumn() {

From source file org.rstudio.core.client.cellview.ImageButtonColumn.java

public class ImageButtonColumn<T> extends Column<T, String> {
    public ImageButtonColumn(final AbstractImagePrototype imagePrototype, final OperationWithInput<T> onClick,
            final String title) {
        super(new ButtonCell() {
            @Override
            public void render(Context context, SafeHtml value, SafeHtmlBuilder sb) {

From source file org.rstudio.core.client.cellview.LinkColumn.java

public abstract class LinkColumn<T> extends Column<T, String> {
    public LinkColumn(ListDataProvider<T> dataProvider, OperationWithInput<T> onClicked) {
        this(dataProvider, onClicked, false);
    }

    public LinkColumn(final ListDataProvider<T> dataProvider, final OperationWithInput<T> onClicked,

From source file org.rstudio.studio.client.workbench.views.environment.view.ObjectGridColumn.java

public abstract class ObjectGridColumn extends Column<RObjectEntry, String> {
    public ObjectGridColumn(Cell<String> cell, String columnName, int columnWidth, int columnType,
            final EnvironmentObjectDisplay.Host host) {
        super(cell);
        columnName_ = columnName;
        columnWidth_ = columnWidth;

From source file org.seamless.gwt.component.client.widget.ClickableTextColumn.java

/**
 * @author Christian Bauer
 */
public abstract class ClickableTextColumn<T> extends Column<T, String> {

    protected String styleName;

From source file org.ssgwt.client.ui.datagrid.column.ActionColumn.SSActionColumn.java

/**
 * The SSActionColumn is a column that display actions and fire an event on click of one of the actions.
 *
 * @author Alec Erasmus
 * @since  03 June 2013
 */

From source file org.ssgwt.client.ui.datagrid.column.ImageHoverColumn.SSHoverImageColumn.java

/**
 * The SSHoverImageColumn is a column that display an image also on hover of the cell display more information
 * in the from of a popup widget passed in by the constructor.
 *
 * @author Alec Erasmus
 * @since 31 May 2013

From source file org.ssgwt.client.ui.datagrid.column.SSBooleanImageColumn.java

/**
 * The SSBooleanImageColumn is a column that display an image based on the boolean value.
 *
 * @author Alec Erasmus
 * @since 02 April 2013
 */