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

es.ucm.fdi.gaia.jcolibri.connector.ontologyutils.OntologyMapping 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
/**
 * OntologyMapping.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 mapping configuration of the connector
 * @author Juan A. Recio-Garcia
 * @version 1.0
 *
 */
public class OntologyMapping {

	private String property;
	private String concept;
	private String attribute;

	/**
	 * @return Returns the attribute.
	 */
	public String getAttribute() {
		return attribute;
	}

	/**
	 * @param attribute The attribute to set.
	 */

	public void setAttribute(String attribute) {
		this.attribute = attribute;
	}
	/**
	 * @return Returns the concept.
	 */

	public String getConcept() {
		return concept;
	}

	/**
	 * @param concept The concept to set.
	 */
	public void setConcept(String concept) {
		this.concept = concept;
	}

	/**
	 * @return Returns the property.
	 */
	public String getProperty() {
		return property;
	}

	/**
	 * @param property The property to set.
	 */
	public void setProperty(String property) {
		this.property = property;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy