es.ucm.fdi.gaia.jcolibri.extensions.classification.ClassificationSolution 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.
/**
* ClassificationSolution.java
* jCOLIBRI2 framework.
* @author Juan A. Recio-Garc�a.
* GAIA - Group for Artificial Intelligence Applications
* http://gaia.fdi.ucm.es
* 04/08/2007
*/
package es.ucm.fdi.gaia.jcolibri.extensions.classification;
import es.ucm.fdi.gaia.jcolibri.cbrcore.CaseComponent;
/**
* Defines a common interface for the solution CaseComponents of
* a case that will be classified.
* @author Juan A. Recio-Garcia
* @version 1.0
*
*/
public interface ClassificationSolution extends CaseComponent
{
/**
* Returns the class of the solution (case).
*/
Object getClassification();
}