roboguice.activity.event.OnStopEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of roboguice Show documentation
Show all versions of roboguice Show documentation
A framework for using Google Guice dependency injection in Android.
package roboguice.activity.event;
import android.app.Activity;
/**
* Class representing the event raised by RoboActivity.onStop()
*
* @author Adam Tybor
* @author John Ericksen
*/
public class OnStopEvent {
protected Activity activity;
public OnStopEvent(Activity activity) {
this.activity = activity;
}
public Activity getActivity() {
return activity;
}
}