List of usage examples for com.google.gwt.view.client HasData interface-usage
From source file com.bradrydzewski.gwtgantt.gantt.TaskDisplay.java
/** * * @author Brad Rydzewski */ public interface TaskDisplay<T> extends HasData<T>, IsWidget {
From source file com.bradrydzewski.gwtgantt.gantt.TaskDisplayPresenter.java
/**
* <p>
* Presenter implementation of {@link HasData} that presents data for various
* cell based widgets. This class contains most of the shared logic used by
* these widgets, making it easier to test the common code.
* <p>
From source file com.imaginedreal.gwtgantt.gantt.TaskDisplay.java
/** * * @author Brad Rydzewski */ public interface TaskDisplay<T> extends HasData<T>, IsWidget {
From source file com.imaginedreal.gwtgantt.gantt.TaskDisplayPresenter.java
/**
* <p>
* Presenter implementation of {@link HasData} that presents data for various
* cell based widgets. This class contains most of the shared logic used by
* these widgets, making it easier to test the common code.
* <p>
From source file com.kk_electronic.kkportal.core.ui.ListDisplay.java
public interface ListDisplay<T> extends HasData<T> {
Widget asWidget();
}
From source file com.kk_electronic.kkportal.core.ui.TabDisplay.java
public class TabDisplay implements HasData<TabInfo> { @UiField LayoutPanel panel; private SelectionModel<? super TabInfo> selectionModel;
From source file com.kk_electronic.kkportal.debug.modules.UsageGraph.java
/** * This Module provides a smooth graph by animating the steps between the data points. * We use a HTML5 Canvas to display the values using a simple path with no interpolation. * @author Jes Andersen */ public class UsageGraph extends AbstractModule implements HasData<Double>, RequiresResize {
From source file org.drools.guvnor.client.widgets.tables.AbstractSimpleTable.java
/** * A composite Widget that shows rows of data (not-paged) and a "column picker" * to allow columns to be hidden from view. Columns can also be sorted. */ public abstract class AbstractSimpleTable<T extends AbstractPageRow> extends Composite implements HasData<T> {
From source file org.kie.guvnor.commons.ui.client.tables.AbstractSimpleTable.java
/** * A composite Widget that shows rows of data (not-paged) and a "column picker" * to allow columns to be hidden from view. Columns can also be sorted. */ public abstract class AbstractSimpleTable<T extends AbstractPageRow> extends Composite implements HasData<T> {
From source file org.kie.uberfire.client.tables.SimpleTable.java
/** * A composite Widget that shows rows of data (not-paged) and a "column picker" * to allow columns to be hidden from view. Columns can also be sorted. */ public class SimpleTable<T> extends Composite implements HasData<T> {