Example usage for com.google.gwt.activity.shared AbstractActivity subclass-usage

List of usage examples for com.google.gwt.activity.shared AbstractActivity subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.activity.shared AbstractActivity subclass-usage.

Usage

From source file com.google.gwt.sample.stockwatcher.client.StockWatcherActivity.java

public class StockWatcherActivity extends AbstractActivity implements Presenter {
    private StockWatcherDisplay display;
    private EventBus eventBus;
    private ArrayList<String> stocks = new ArrayList<String>();
    private final ClientFactory clientFactory;
    private Timer timer;

From source file com.googlecode.mgwt.mvp.client.MGWTAbstractActivity.java

/**
 * A baseclass for Activities which adds the ability to collect all handler instances and removes
 * them when the activity is stopped.
 *
 * @author Daniel Kurka
 */

From source file com.gwt2go.dev.client.activity.CellTableActivity.java

public class CellTableActivity extends AbstractActivity implements CellTableView.Presenter {

    // Used to obtain views, eventBus, placeController
    // Alternatively, could be injected via GIN
    private ClientFactory clientFactory;

From source file com.gwt2go.dev.client.activity.CellTableSorting23Activity.java

/**
 * Cell table sorting GWT 2.3 way.
 * 
 * @author L.Pelov
 */
public class CellTableSorting23Activity extends AbstractActivity implements CellTableSortingView23.Presenter {

From source file com.gwt2go.dev.client.activity.CellTableSortingActivity.java

/**
 * Cell sortable table sorting activity
 * 
 * @author L.Pelov
 */
public class CellTableSortingActivity extends AbstractActivity implements CellTableSortingView.Presenter {

From source file com.gwt2go.dev.client.activity.DataGridActivity1.java

public class DataGridActivity1 extends AbstractActivity implements DataGridView.Presenter {

    private ClientFactory clientFactory;

    public DataGridActivity1(DataGridPlace place, ClientFactory clientFactory) {

From source file com.gwt2go.dev.client.activity.DndActivity.java

/**
 * 
 * @author L.Pelov
 */
public class DndActivity extends AbstractActivity implements DndView.Presenter {

From source file com.gwt2go.dev.client.activity.EditorActivity.java

/**
 * Cell table sorting GWT 2.3 way.
 * 
 * @author L.Pelov
 */
public class EditorActivity extends AbstractActivity implements EditorView.Presenter {

From source file com.gwt2go.dev.client.activity.GoodbyeActivity.java

public class GoodbyeActivity extends AbstractActivity implements GoodbyeView.Presenter {

    // Used to obtain views, eventBus, placeController
    // Alternatively, could be injected via GIN
    private ClientFactory clientFactory;

From source file com.gwt2go.dev.client.activity.HelloActivity.java

public class HelloActivity extends AbstractActivity implements HelloView.Presenter {

    // Used to obtain views, eventBus, placeController
    // Alternatively, could be injected via GIN
    private ClientFactory clientFactory;