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.kie.uberfire.client.tables.SelectionColumn.java

public class SelectionColumn<T> extends Column<T, Boolean> {

    public static <T> SelectionColumn<T> createAndAddSelectionColumn(DataGrid<T> dataGrid) {
        SelectionColumn<T> selectionColumn = new SelectionColumn<T>(dataGrid);
        dataGrid.addColumn(selectionColumn, SafeHtmlUtils.fromSafeConstant("<br>"));
        return selectionColumn;

From source file org.kie.workbench.common.screens.projecteditor.client.forms.dependencies.ArtifactIdColumn.java

public class ArtifactIdColumn extends com.google.gwt.user.cellview.client.Column<EnhancedDependency, String> {

    public ArtifactIdColumn(DependencyGridViewImpl.RedrawCommand redrawCommand) {
        super(new WaterMarkEditTextCell(ProjectEditorResources.CONSTANTS.EnterAnArtifactID()));

        setFieldUpdater(new ArtifactIdDependencyFieldUpdater((WaterMarkEditTextCell) getCell(), redrawCommand));

From source file org.kie.workbench.common.screens.projecteditor.client.forms.dependencies.GroupIdColumn.java

public class GroupIdColumn extends Column<EnhancedDependency, String> {

    public GroupIdColumn(DependencyGridViewImpl.RedrawCommand redrawCommand) {
        super(new WaterMarkEditTextCell(ProjectEditorResources.CONSTANTS.EnterAGroupID()));

        setFieldUpdater(new GroupIdDependencyFieldUpdater((WaterMarkEditTextCell) getCell(), redrawCommand));

From source file org.kie.workbench.common.screens.projecteditor.client.forms.dependencies.RemoveColumn.java

public class RemoveColumn extends com.google.gwt.user.cellview.client.Column<EnhancedDependency, String> {

    public RemoveColumn() {
        super(new TrashCanImageCell());
    }

From source file org.kie.workbench.common.screens.projecteditor.client.forms.dependencies.ScopeColumn.java

public class ScopeColumn extends Column<Dependency, String> {

    public ScopeColumn() {
        super(new ScopePopupCell());

        setFieldUpdater(new FieldUpdater<Dependency, String>() {

From source file org.kie.workbench.common.screens.projecteditor.client.forms.dependencies.VersionColumn.java

public class VersionColumn extends Column<EnhancedDependency, String> {

    public VersionColumn(final DependencyGridViewImpl.RedrawCommand redrawCommand) {
        super(new WaterMarkEditTextCell(ProjectEditorResources.CONSTANTS.EnterAVersion()));

        setFieldUpdater(new VersionDependencyFieldUpdater((WaterMarkEditTextCell) getCell(), redrawCommand));

From source file org.kie.workbench.common.screens.projecteditor.client.forms.dependencies.WhiteListColumn.java

public class WhiteListColumn extends com.google.gwt.user.cellview.client.Column<EnhancedDependency, String> {

    private DependencyGrid presenter;
    private WhiteList whiteList;

    public WhiteListColumn() {

From source file org.kie.workbench.common.widgets.client.popups.validation.ValidationMessageLevelColumn.java

/**
 * A column for the BuildMessage.Level
 */
public class ValidationMessageLevelColumn extends Column<ValidationMessage, ValidationMessage.Level> {

    public ValidationMessageLevelColumn() {

From source file org.lorislab.smonitor.gwt.uc.table.column.AbstractEntityColumn.java

/**
 * The abstract entity column.
 *
 * @author Andrej Petras
 */
public abstract class AbstractEntityColumn<T, K extends Comparable<K>, C> extends Column<T, C> {

From source file org.lorislab.smonitor.gwt.uc.table.column.EntityErrorColumn.java

/**
 * The entity error column.
 *
 * @author Andrej Petras
 */
public class EntityErrorColumn<T> extends Column<T, String> {