es.ucm.fdi.gaia.jcolibri.util.OntoBridgeSingleton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jCOLIBRI Show documentation
Show all versions of jCOLIBRI Show documentation
jCOLIBRI is a java framework for the development of Case-Based Reasoning systems.
/**
* OntoBridgeSingleton.java
* jCOLIBRI2 framework.
* @author Juan A. Recio-Garc�a.
* GAIA - Group for Artificial Intelligence Applications
* http://gaia.fdi.ucm.es
* 04/06/2007
*/
package es.ucm.fdi.gaia.jcolibri.util;
import es.ucm.fdi.gaia.ontobridge.OntoBridge;
/**
* Singleton for the OntoBridge library
* @author Juan A. Recio-Garcia
*
*/
public class OntoBridgeSingleton {
private static OntoBridge _instance=null;
public static OntoBridge getOntoBridge() {
if(_instance == null)
_instance = new OntoBridge();
return _instance;
}
}