Example usage for com.google.gwt.view.client AbstractDataProvider subclass-usage

List of usage examples for com.google.gwt.view.client AbstractDataProvider subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.view.client AbstractDataProvider subclass-usage.

Usage

From source file com.arcbees.gquery.tooltip.client.contactcell.ContactDatabase.java

/**
 * The data source for contact information used in the sample. This majority of
 * the code below comes from the GWT showcase :
 * http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList
 */
public class ContactDatabase extends AbstractDataProvider<ContactDatabase.ContactInfo> {

From source file com.google.gwt.sample.showcase.client.content.cell.AsyncContactProvider.java

public class AsyncContactProvider extends AbstractDataProvider<ContactInfo> {

    private static final Logger logger = Logger.getLogger(AsyncContactProvider.class.getName());

    private final ArrayList<ContactInfo> serverContacts = new ArrayList<ContactInfo>();
    private final Label loadingStatus = new Label("Loading...");

From source file de.uni_koeln.spinfo.maalr.webapp.ui.editor.client.entry.list.dataprovider.SimplePagingDataProvider.java

public class SimplePagingDataProvider extends AbstractDataProvider<LexEntry> {

    private ListDataProvider<LexEntry> delegate = new ListDataProvider<LexEntry>();
    private PagingDataGrid<LexEntry> table;
    private EditorServiceAsync service;
    private AsyncCallback<LexEntryList> callback;

From source file org.eclipse.che.ide.jseditor.client.preference.dataprovider.FileTypeDataProvider.java

/**
 * An {@link AbstractDataProvider} implementation for {@link FileType} based on the {@link FileTypeRegistry}.
 *
 * @author "Mickal Leduque"
 */
public class FileTypeDataProvider extends AbstractDataProvider<FileType> implements RefreshableDataProvider {