public class Context {
private Context() {
}
private static class SingletonHolder {
private static final Context INSTANCE = new Context();
}
public static Context getInstance() {
return SingletonHolder.INSTANCE;
}
}