Sourcable.java
Upload User: rhdiban
Upload Date: 2013-08-09
Package Size: 15085k
Code Size: 2k
Category:

Windows Develop

Development Platform:

Java

  1. /*
  2.  *    This program is free software; you can redistribute it and/or modify
  3.  *    it under the terms of the GNU General Public License as published by
  4.  *    the Free Software Foundation; either version 2 of the License, or
  5.  *    (at your option) any later version.
  6.  *
  7.  *    This program is distributed in the hope that it will be useful,
  8.  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.  *    GNU General Public License for more details.
  11.  *
  12.  *    You should have received a copy of the GNU General Public License
  13.  *    along with this program; if not, write to the Free Software
  14.  *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15.  */
  16. /*
  17.  *    Sourcable.java
  18.  *    Copyright (C) 1999 Len Trigg
  19.  *
  20.  */
  21. package weka.classifiers;
  22. /** 
  23.  * Interface for classifiers that can be converted to Java source.
  24.  *
  25.  * @author Len Trigg (trigg@cs.waikato.ac.nz)
  26.  * @version $Revision: 1.4 $
  27.  */
  28. public interface Sourcable {
  29.   /**
  30.    * Returns a string that describes the classifier as source. The
  31.    * classifier will be contained in a class with the given name (there may
  32.    * be auxiliary classes),
  33.    * and will contain a method with the signature:
  34.    * <pre><code>
  35.    * public static double classify(Object [] i);
  36.    * </code></pre>
  37.    * where the array <code>i</code> contains elements that are either
  38.    * Double, String, with missing values represented as null. The generated
  39.    * code is public domain and comes with no warranty.
  40.    *
  41.    * @param className the name that should be given to the source class.
  42.    * @return the object source described by a string
  43.    * @exception Exception if the souce can't be computed
  44.    */
  45.   String toSource(String className) throws Exception;
  46. }