Created
October 6, 2012 05:27
-
-
Save gpike/3844013 to your computer and use it in GitHub Desktop.
MvpGinjector.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.gwtcasts.mvp.client; | |
import com.google.gwt.inject.client.GinModules; | |
import com.google.gwt.inject.client.Ginjector; | |
import com.google.gwt.place.shared.PlaceController; | |
import com.google.web.bindery.event.shared.EventBus; | |
import com.gwtcasts.mvp.client.amazon.AmazonView; | |
import com.gwtcasts.mvp.client.mississippi.MississippiView; | |
@GinModules({MvpModule.class}) | |
public interface MvpGinjector extends Ginjector { | |
public EventBus getEventBus(); | |
public PlaceController getPlaceController(); | |
public AmazonView getAmazonView(); | |
public MississippiView getMississippiView(); | |
public MainView getMainView(); | |
public MvpContextImpl getContext(); | |
public GreetingServiceAsync getService(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment