~ubuntu-branches/ubuntu/oneiric/weka/oneiric

« back to all changes in this revision

Viewing changes to weka/experiment/RandomSplitResultProducer.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner, Soeren Sonnenburg, Torsten Werner
  • Date: 2008-08-10 21:27:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080810212705-tr8etpnkdx2ziktp
Tags: 3.5.8-1
[ Soeren Sonnenburg ]
* Bump Standards Version to 3.8.0.
* Remove references to non-free Java in debian/copyright.

[ Torsten Werner ]
* new upstream release
* Switch to openjdk-6.
* Move package to main.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
import weka.core.Instances;
29
29
import weka.core.Option;
30
30
import weka.core.OptionHandler;
 
31
import weka.core.RevisionHandler;
 
32
import weka.core.RevisionUtils;
31
33
import weka.core.Utils;
32
34
 
33
35
import java.io.File;
103
105
 * All options after -- will be passed to the split evaluator.
104
106
 *
105
107
 * @author Len Trigg (trigg@cs.waikato.ac.nz)
106
 
 * @version $Revision: 1.19 $
 
108
 * @version $Revision: 1.20 $
107
109
 */
108
110
public class RandomSplitResultProducer 
109
 
  implements ResultProducer, OptionHandler, AdditionalMeasureProducer {
 
111
  implements ResultProducer, OptionHandler, AdditionalMeasureProducer, 
 
112
             RevisionHandler {
110
113
  
111
114
  /** for serialization */
112
115
  static final long serialVersionUID = 1403798165056795073L;
900
903
    return result;
901
904
  }
902
905
 
 
906
  /**
 
907
   * Returns the revision string.
 
908
   * 
 
909
   * @return            the revision
 
910
   */
 
911
  public String getRevision() {
 
912
    return RevisionUtils.extract("$Revision: 1.20 $");
 
913
  }
903
914
} // RandomSplitResultProducer