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

com.talk2object.common.ApplicationContext Maven / Gradle / Ivy

The newest version!
package com.talk2object.common;

public class ApplicationContext extends ContextImpl {

	private static Context instance;

	private ApplicationContext() {
		super(null);
	}

	public static Context getInstance() {
		if (instance == null)
			instance = new ApplicationContext();

		return instance;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy