List of usage examples for com.google.gwt.user.cellview.client Column subclass-usage
From source file de.uni_koeln.spinfo.maalr.webapp.ui.editor.client.entry.list.column.LemmaVersionColumnHighlightable.java
public class LemmaVersionColumnHighlightable extends Column<LemmaVersion, SafeHtml> { private MaalrQuery query; public LemmaVersionColumnHighlightable(SafeHtmlCell cell) { super(cell);
From source file de.uni_koeln.spinfo.maalr.webapp.ui.editor.client.entry.list.column.LexEntryColumn.java
public class LexEntryColumn extends Column<LexEntry, ICellWrapper> { public LexEntryColumn(Cell cell) { super(cell); }
From source file fr.mncc.gwttoolbox.datagrid.client.columns.Column.java
/**
* Generic column type.
*
* @param <T> the row type
* @param <C> the column type
*/
From source file gwtquery.plugins.droppable.client.gwt.DragAndDropColumn.java
/**
* {@link Column} implementation allowing dragging and dropping of cells.
*
* @author Julien Dramaix (julien.dramaix@gmail.com)
*
* @param <T>
From source file medizin.client.a_nonroo.app.client.SpacerColumn.java
class SpacerColumn<T> extends Column<T, SafeHtml> { private static final SafeHtmlCell CELL = new SafeHtmlCell(); public SpacerColumn() { super(CELL);
From source file medizin.client.ui.SpacerColumn.java
class SpacerColumn<T> extends Column<T, SafeHtml> { private static final SafeHtmlCell CELL = new SafeHtmlCell(); public SpacerColumn() { super(CELL);
From source file org.activityinfo.ui.client.component.importDialog.validation.ValidationClassGridColumn.java
/** * @author yuriyz on 4/30/14. */ public class ValidationClassGridColumn extends Column<ValidationResult, String> { public ValidationClassGridColumn() {
From source file org.cloudcoder.app.client.view.ShowFullOutputButtonColumn.java
public abstract class ShowFullOutputButtonColumn<T> extends Column<T, String> { public ShowFullOutputButtonColumn() { super(new ButtonCell()); // Set a FieldUpdater to handle the button click setFieldUpdater(new FieldUpdater<T, String>() {
From source file org.drools.guvnor.client.decisiontable.widget.auditlog.AuditLogEntryCommentColumn.java
/** * A column for Audit Log User comments */ public class AuditLogEntryCommentColumn extends Column<AuditLogEntry, String> { private static final TextInputCell cell = new TextInputCell();
From source file org.drools.guvnor.client.decisiontable.widget.auditlog.AuditLogEntryDeleteCommentColumn.java
/** * A column showing an icon to delete an AuditLogEntry */ public class AuditLogEntryDeleteCommentColumn extends Column<AuditLogEntry, ImageResource> { private static final ImageResourceCell cell = new ImageResourceCell() {