List of usage examples for com.google.gwt.user.cellview.client Column subclass-usage
From source file org.obiba.opal.web.gwt.app.client.ui.celltable.ActionsIndexColumn.java
public class ActionsIndexColumn<T> extends Column<T, T> implements HasActionHandler<T> { public ActionsIndexColumn(String... actions) { this(new ConstantActionsProvider<T>(actions)); }
From source file org.obiba.opal.web.gwt.app.client.ui.celltable.ActionsPackageRColumn.java
public class ActionsPackageRColumn<T> extends Column<T, T> implements HasActionHandler<T> { public static final String REMOVE_ACTION = "Remove"; public static final String PUBLISH_ACTION = "Publish methods";
From source file org.obiba.opal.web.gwt.app.client.ui.celltable.AttributeColumn.java
public abstract class AttributeColumn<T> extends Column<T, String> { private final String attributeName; public AttributeColumn(String attributeName) { super(new TextCell(new SafeHtmlRenderer<String>() {
From source file org.obiba.opal.web.gwt.app.client.ui.celltable.BookmarksColumn.java
public class BookmarksColumn extends Column<BookmarkDto, BookmarkDto> { public BookmarksColumn(PlaceManager placeManager) { super(new BookmarksCell(placeManager)); setCellStyleNames("row-bookmarks"); setSortable(true);
From source file org.obiba.opal.web.gwt.app.client.ui.celltable.CheckboxColumn.java
public class CheckboxColumn<T> extends Column<T, Boolean> implements HasActionHandler<Integer> { private final Translations translations = GWT.create(Translations.class); private final SetSelectionModel<T> selectionModel;
From source file org.obiba.opal.web.gwt.app.client.ui.celltable.ClickableColumn.java
public abstract class ClickableColumn<T> extends Column<T, String> implements HasFieldUpdater<T, String> { public ClickableColumn() { super(cell); }
From source file org.obiba.opal.web.gwt.app.client.ui.celltable.DateTimeColumn.java
public abstract class DateTimeColumn<T> extends Column<T, Date> { public DateTimeColumn() { super(new DateCell(DateTimeFormat.getFormat(PredefinedFormat.DATE_TIME_MEDIUM))); } public DateTimeColumn(DateTimeFormat dateFormat) {
From source file org.obiba.opal.web.gwt.app.client.ui.celltable.EditableColumn.java
public abstract class EditableColumn<T> extends Column<T, String> implements HasFieldUpdater<T, String> { public EditableColumn(Cell<String> cell) { super(cell); } }
From source file org.obiba.opal.web.gwt.app.client.ui.celltable.LabelValueColumn.java
/** * */ public abstract class LabelValueColumn<T> extends Column<T, String> { private String css;
From source file org.obiba.opal.web.gwt.app.client.ui.celltable.LocaleTextColumn.java
public abstract class LocaleTextColumn<T> extends Column<T, String> { public LocaleTextColumn() { super(new TextCell(new SafeHtmlRenderer<String>() { @Override