List of usage examples for com.google.gwt.place.shared PlaceController subclass-usage
From source file com.moesol.gwt.maps.client.place.MapsPlaceController.java
public class MapsPlaceController extends PlaceController { @Inject public MapsPlaceController(EventBus eventBus) { super(eventBus); } }
From source file com.qualogy.qafe.mgwt.client.main.QPlaceController.java
public class QPlaceController extends PlaceController { public static class QDefaultDelegate extends DefaultDelegate { @Override public boolean confirm(String message) { // Not showing confirmation dialog
From source file com.sfeir.common.gwt.client.mvp.PlaceController.java
/** * In charge of the user's location in the app. */ public class PlaceController extends com.google.gwt.place.shared.PlaceController { private static final Logger log = Logger.getLogger(PlaceController.class.getName());
From source file com.tasktop.c2c.server.profile.web.ui.client.place.AppPlaceController.java
/** * @author straxus (Tasktop Technologies Inc.) * @author cmorgan * */ public class AppPlaceController extends PlaceController {
From source file fr.putnami.pwt.core.mvp.client.MvpController.java
public class MvpController extends PlaceController implements PlaceHistoryMapper, ActivityMapper, HasStartActivityHandlers, HasStopActivityHandlers, HasMayStopActivityHandlers { private static MvpController instance; private static final String PLACE_CROWLER_DELIMITER = "!";
From source file mx.org.pescadormvp.core.client.placesandactivities.PescadorMVPPlaceController.java
/** * Internal Pescador MVP use. Guice-friendly {@link PlaceController}. * */ public class PescadorMVPPlaceController extends PlaceController {
From source file my.client.common.MyPlaceController.java
/** * In charge of the user's location in the app. */ public class MyPlaceController extends PlaceController { public MyPlaceController(EventBus eventBus) {
From source file org.dmd.mvw.client.mvw.MvwAsyncPlaceController.java
/**
* The MvwAsyncPlaceController provides standard support for GWT code splitting
* based on the Activities that run in Places. By specifying the codeSplit flag
* on an Activity, the MVW code generation will create the code that will allow
* for asynchronous loading of the Activity's code. Activities that don't specify
* the codeSplit flag will be use the normal instantiation mechanisms.
From source file org.glom.web.client.PlaceControllerExt.java
/**
* @author Murray Cumming <murrayc@murrayc.com>
*
* See http://stackoverflow.com/questions/7672895/using-gwts-activities-and-places-can-i-navigate-to-a-previous-page-without-using?rq=1
*
*/
From source file org.openremote.app.client.mvp.AppPlaceController.java
/** * This provides the ability to intercept the place change outside of an activity * mapper and to change the place before anything else happens. Also maps place change * events from the legacy event bus to our event bus. */ public class AppPlaceController extends PlaceController {