![JAR search and dependency download from the Maven repository](/logo.png)
es.ucm.fdi.gaia.jcolibri.connector.ontologyutils.OntologyInfo 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.
The newest version!
/**
* OntologyInfo.java
* jCOLIBRI2 framework.
* @author Juan A. Recio-Garc�a.
* GAIA - Group for Artificial Intelligence Applications
* http://gaia.fdi.ucm.es
* 12/06/2007
*/
package es.ucm.fdi.gaia.jcolibri.connector.ontologyutils;
/**
* Stores the ontology configuration of the connector.
* @author Juan A. Recio-Garcia
* @version 1.0
*/
public class OntologyInfo {
private String url;
private String localCopy;
/**
* @return Returns the localCopy.
*/
public String getLocalCopy() {
return localCopy;
}
/**
* @param localCopy The localCopy to set.
*/
public void setLocalCopy(String localCopy) {
this.localCopy = localCopy;
}
/**
* @return Returns the url.
*/
public String getUrl() {
return url;
}
/**
* @param url The url to set.
*/
public void setUrl(String url) {
this.url = url;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy