All Downloads are FREE. Search and download functionalities are using the official Maven repository.

roboguice.activity.event.OnStopEvent Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy