net.sf.andromedaioc.android.AndromedaApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andromeda-ioc Show documentation
Show all versions of andromeda-ioc Show documentation
Inversion of Control Framework for Android
The newest version!
package net.sf.andromedaioc.android;
import android.app.Application;
import net.sf.andromedaioc.context.AndromedaContext;
/**
* Performs andromeda context initialisation on application start
*
* @author Alexey Mitrov
*/
public class AndromedaApplication extends Application implements AndromedaContextHolder {
private AndromedaContext andromedaContext;
@Override
public void onCreate() {
super.onCreate();
andromedaContext = Andromeda.createAndromedaContext(this);
}
public AndromedaContext getAndromedaContext() {
return andromedaContext;
}
}