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

roboguice.context.event.OnDestroyEvent Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package roboguice.context.event;

import android.content.Context;

/**
 * Class representing the event raised by Context.onDestroy()
 *
 * @author Adam Tybor
 * @author John Ericksen
 */
public class OnDestroyEvent {
    protected T context;

    public OnDestroyEvent(T context) {
        this.context = context;
    }

    public T getContext() {
        return context;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy