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.sencha.gxt.explorer.client.app.activity.ShowExampleActivity.java

public class ShowExampleActivity extends AbstractActivity {
    @Inject
    private ExampleDetailView detailView;

    @Inject
    private ExampleModel model;

From source file com.tasktop.c2c.server.common.web.client.presenter.AbstractPresenter.java

public abstract class AbstractPresenter extends AbstractActivity implements Presenter {

    private final IsWidget view;

    protected AbstractPresenter(IsWidget view) {
        this.view = view;

From source file com.tasktop.c2c.server.profile.web.ui.client.presenter.components.OrganizationAdminPresenter.java

public class OrganizationAdminPresenter extends AbstractActivity
        implements OrganizationAdminEditView.Presenter, SplittableActivity {

    private Organization organization;
    private OrganizationAdminEditView view = OrganizationAdminEditView.getInstance();
    private CommonProfileMessages commonProfileMessages = AppGinjector.get.instance().getCommonProfileMessages();

From source file com.tasktop.c2c.server.profile.web.ui.client.presenter.ProjectAdminActivity.java

public class ProjectAdminActivity extends AbstractActivity implements SplittableActivity {

    private Project project;
    private ProjectAdminView view = ProjectAdminView.getInstance();
    private ProjectAdminActivityMapper adminActivityMapper = new ProjectAdminActivityMapper();
    private ActivityManager adminActivityManager = new ActivityManager(adminActivityMapper,

From source file com.tasktop.c2c.server.profile.web.ui.client.presenter.ProjectAdminMenuActivity.java

public class ProjectAdminMenuActivity extends AbstractActivity {

    private Place currentPlace;

    public ProjectAdminMenuActivity(Place currentPlace) {
        this.currentPlace = currentPlace;

From source file com.tasktop.c2c.server.profile.web.ui.client.presenter.ProjectAdminSettingsActivity.java

public class ProjectAdminSettingsActivity extends AbstractActivity
        implements ProjectAdminSettingsView.Presenter, SplittableActivity {

    private boolean editing = false;
    private Project project;
    private ProjectAdminSettingsView view = ProjectAdminSettingsView.getInstance();

From source file com.tasktop.c2c.server.profile.web.ui.client.view.components.account.presenter.AccountActivity.java

public class AccountActivity extends AbstractActivity implements IAccountView.AccountPresenter, SplittableActivity {

    private Profile profile;
    private List<SshPublicKey> sshPublicKeys;
    private SshPublicKey selectedSshKey;
    // This is here as a substitute for PlaceController.getWhere() which would return the current place and views

From source file com.tasktop.c2c.server.profile.web.ui.client.view.components.project.admin.presenter.ProjectAdminSourceActivity.java

public class ProjectAdminSourceActivity extends AbstractActivity
        implements IProjectAdminSourceView.Presenter, SplittableActivity {

    private String projectIdentifier;
    private String repoBaseUrl;
    private String sshKey;

From source file com.tasktop.c2c.server.profile.web.ui.client.view.components.project.admin.presenter.ProjectAdminTeamActivity.java

public class ProjectAdminTeamActivity extends AbstractActivity
        implements IProjectAdminTeamView.Presenter, SplittableActivity {

    private ProjectTeamAdminView view = ProjectTeamAdminView.getInstance();
    private ProjectTeamSummary projectTeamSummary;
    private Project project;

From source file com.thinqq.qsports.client.confirmation.ConfirmationActivity.java

/**
 * Activities are started and stopped by an ActivityManager associated with a container Widget.
 */
public class ConfirmationActivity extends AbstractActivity implements Confirmation.Presenter {
    /**
     * Used to obtain views, eventBus, placeController.