List of usage examples for com.google.gwt.user.cellview.client Column subclass-usage
From source file org.drools.guvnor.client.decisiontable.widget.auditlog.AuditLogEntrySummaryColumn.java
/** * A column for the Audit Log summary */ public class AuditLogEntrySummaryColumn extends Column<AuditLogEntry, AuditLogEntry> { private static final String DATE_TIME_FORMAT = ApplicationPreferences.getDroolsDateTimeFormat();
From source file org.drools.guvnor.client.table.SelectionColumn.java
/** * @author Geoffrey De Smet */ public class SelectionColumn<T> extends Column<T, Boolean> { public static <T> void createAndAddSelectionColumn(CellTable<T> cellTable) {
From source file org.drools.guvnor.client.widgets.tables.SelectionColumn.java
public class SelectionColumn<T> extends Column<T, Boolean> { public static <T> void createAndAddSelectionColumn(CellTable<T> cellTable) { SelectionColumn<T> selectionColumn = new SelectionColumn<T>(cellTable); cellTable.addColumn(selectionColumn, SafeHtmlUtils.fromSafeConstant("<br>")); }
From source file org.drools.workbench.screens.guided.dtable.client.widget.auditlog.AuditLogEntryCommentColumn.java
/** * A column for Audit Log User comments * * NOTE: BZ-996942: Replace input text for a textarea element, allows comments more legible and putting a helper placeholder. */ public class AuditLogEntryCommentColumn extends Column<AuditLogEntry, String> {
From source file org.drools.workbench.screens.guided.dtable.client.widget.auditlog.AuditLogEntryDeleteCommentColumn.java
/** * A column showing an icon to delete an AuditLogEntry. * * NOTE: BZ-996942: Replaced old icon for a bootstrap trash icon. */ public class AuditLogEntryDeleteCommentColumn extends Column<AuditLogEntry, SafeHtml> {
From source file org.drools.workbench.screens.guided.dtable.client.widget.auditlog.AuditLogEntrySummaryColumn.java
/** * A column for the Audit Log summary */ public class AuditLogEntrySummaryColumn extends Column<AuditLogEntry, AuditLogEntry> { private static final String DATE_FORMAT = ApplicationPreferences.getDroolsDateFormat();
From source file org.eclipse.che.ide.jseditor.client.preference.editorselection.EditorSelectionColumn.java
public class EditorSelectionColumn extends Column<FileType, EditorType> { private final FileTypeEditorMapping valuesHolder; public EditorSelectionColumn(final List<EditorType> editorTypes, final FileTypeEditorMapping filetypeEditorMapping, final FieldUpdater<FileType, EditorType> fieldUpdater, final EditorTypeRegistry editorTypeRegistry,
From source file org.eclipse.che.ide.jseditor.client.preference.keymaps.KeymapSelectionColumn.java
public class KeymapSelectionColumn extends Column<EditorType, Keymap> { private final KeymapValuesHolder valuesHolder; public KeymapSelectionColumn(final KeymapValuesHolder valuesHolder, final FieldUpdater<EditorType, Keymap> fieldUpdater, final String selectWidthStyle) { super(new KeymapSelectionCell("gwt-ListBox", selectWidthStyle));
From source file org.hudsonci.gwt.common.ImageResourceColumn.java
/**
* Cell view column to render an {@link ImageResource}.
*
* @author <a href="mailto:jason@planet57.com">Jason Dillon</a>
* @since 2.1.0
*/
From source file org.jboss.as.console.client.domain.groups.deployment.CheckboxColumn.java
/**
* A column that allows a boolean value to be updated. The entity should implement
* CheckboxColumn.Selectable.
*
* @author Stan Silvert ssilvert@redhat.com (C) 2011 Red Hat Inc.
*/