package com.androidcourse.phonemapper.controller;
import android.content.Context;
public class Application {
private static Context mContext;
/**
* @param mContext the mContext to set
*/
public static void setContext(Context mContext) {
Application.mContext = mContext;
}
/**
* @return the mContext
*/
public static Context getContext() {
return mContext;
}
}
|