001 /** 002 * ClassificationSolution.java 003 * jCOLIBRI2 framework. 004 * @author Juan A. Recio-García. 005 * GAIA - Group for Artificial Intelligence Applications 006 * http://gaia.fdi.ucm.es 007 * 04/08/2007 008 */ 009 package jcolibri.extensions.classification; 010 011 import jcolibri.cbrcore.CaseComponent; 012 013 /** 014 * Defines a common interface for the solution CaseComponents of 015 * a case that will be classified. 016 * @author Juan A. Recio-Garcia 017 * @version 1.0 018 * 019 */ 020 public interface ClassificationSolution extends CaseComponent 021 { 022 /** 023 * Returns the class of the solution (case). 024 */ 025 public Object getClassification(); 026 }