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

es.ucm.fdi.gaia.jcolibri.util.OntoBridgeSingleton Maven / Gradle / Ivy

Go to download

jCOLIBRI is a java framework for the development of Case-Based Reasoning systems.

There is a newer version: 3.2
Show newest version
/**
 * 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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy