List of usage examples for com.google.gwt.user.cellview.client CellTable subclass-usage
From source file org.opencms.ade.sitemap.client.alias.simple.CmsAliasCellTable.java
/** * The cell table which is the main widget used for the bulk alias editor.<p> */ public class CmsAliasCellTable extends CellTable<CmsAliasTableRow> { /** The alias controller. */
From source file org.opencms.gwt.client.ui.history.CmsResourceHistoryTable.java
/** * Cell table used to display historical versions of a content.<p> * * Has buttons to preview or restore a previous version.<p> */ public class CmsResourceHistoryTable extends CellTable<CmsHistoryResourceBean> {
From source file org.openremote.app.client.widget.FormTable.java
public class FormTable<T> extends CellTable<T> { final protected WidgetStyle widgetStyle; public FormTable(int pageSize, FormTableStyle formTableStyle) { super(pageSize, formTableStyle.getCellTableResources());
From source file org.openremote.manager.client.widget.FormTable.java
public class FormTable<T> extends CellTable<T> { final protected WidgetStyle widgetStyle; public FormTable(int pageSize, FormTableStyle formTableStyle) { super(pageSize, formTableStyle.getCellTableResources());
From source file org.overlord.sramp.ui.client.widgets.DataTable.java
/** * Extends the GWT {@link CellTable} to provide a custom look and feel. * * @author eric.wittmann@redhat.com */ public class DataTable<T> extends CellTable<T> {
From source file org.roda.wui.common.client.widgets.wcag.AccessibleCellTable.java
public class AccessibleCellTable<T> extends CellTable<T> { public AccessibleCellTable(String summary) { super(); WCAGUtilities.getInstance().makeAccessible(this.getElement()); WCAGUtilities.addAttributeIfNonExistent(this.getElement(), "summary", summary);
From source file org.rstudio.core.client.widget.MultiSelectCellTable.java
public class MultiSelectCellTable<T> extends CellTable<T> implements HasKeyDownHandlers, HasClickHandlers, HasMouseDownHandlers, HasContextMenuHandlers { public MultiSelectCellTable() { commonInit(); }
From source file org.zanata.webtrans.client.ui.SearchResultsDocumentTable.java
/**
* Displays search results for a single document.
*
* @author David Mason, <a
* href="mailto:damason@redhat.com">damason@redhat.com</a>
*
From source file us.softoption.proofs.TProofDisplayCellTable.java
public class TProofDisplayCellTable extends CellTable<TProofline> { private TProofListModel fProofListModel = new TProofListModel(); private TProofController fProofController = null; private MultiSelectionModel<TProofline> fSelectionModel = new MultiSelectionModel<TProofline>();
From source file us.softoption.tree.TTreeDisplayCellTable.java
public class TTreeDisplayCellTable extends CellTable<Object[]> { private TTreeDisplayTableModel fTreeTableModel = new TTreeDisplayTableModel(); private TTreeController fTreeController = null; public TTreeDisplayCellTable() { }