List of usage examples for com.google.gwt.activity.shared AbstractActivity subclass-usage
From source file n3phele.client.presenter.AbstractServiceActivity.java
public abstract class AbstractServiceActivity extends AbstractActivity { protected final String name; protected final CacheManager cacheManager; protected EventBus eventBus; protected final PlaceController placeController;
From source file n3phele.client.presenter.AccountActivity.java
public class AccountActivity extends AbstractActivity { private final String accountUri; private final AccountView display; private Account account = null; private final CacheManager cacheManager; private final EventBus eventBus;
From source file n3phele.client.presenter.AccountListActivity.java
public class AccountListActivity extends AbstractActivity { private EventBus eventBus; private final AppPlaceHistoryMapper historyMapper; private final AccountListView display; private List<Account> accountList = null; private final CacheManager cacheManager;
From source file n3phele.client.presenter.CommandActivity.java
public class CommandActivity extends AbstractActivity { protected final String name; protected final CacheManager cacheManager; protected EventBus eventBus; protected final PlaceController placeController;
From source file n3phele.client.presenter.CommandListActivity.java
public class CommandListActivity extends AbstractActivity { protected final String name; protected final CacheManager cacheManager; protected EventBus eventBus; protected final PlaceController placeController;
From source file n3phele.client.presenter.CreateServiceActivity.java
public class CreateServiceActivity extends AbstractActivity { private final String accountUri; private final CreateServiceView display; private Account account = null; private final CacheManager cacheManager; private final EventBus eventBus;
From source file n3phele.client.presenter.LoginActivity.java
public class LoginActivity extends AbstractActivity { private final String name; private EventBus eventBus; private final PlaceController placeController; private final LoginView display;
From source file n3phele.client.presenter.ProcessActivity.java
public class ProcessActivity extends AbstractActivity { private final String processUri; private final ProcessView display; private CloudProcess process = null; private final CacheManager cacheManager; private final EventBus eventBus;
From source file n3phele.client.presenter.ProgressActivity.java
public class ProgressActivity extends AbstractActivity { private final String progressUri; private final ProgressView display; private Progress progress = null; private final CacheManager cacheManager; private final EventBus eventBus;
From source file n3phele.client.presenter.RepoActivity.java
public class RepoActivity extends AbstractActivity { private final String repositoryUri; private EventBus eventBus; private final PlaceController placeController; private final RepoView display; private Repository repo = null;