~ubuntu-branches/ubuntu/raring/weka/raring

« back to all changes in this revision

Viewing changes to weka/experiment/Experiment.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
import weka.core.converters.AbstractFileLoader;
33
35
import weka.core.converters.ConverterUtils;
144
146
 * All options after -- will be passed to the result producer. <p>
145
147
 *
146
148
 * @author Len Trigg (trigg@cs.waikato.ac.nz)
147
 
 * @version $Revision: 1.26 $
 
149
 * @version $Revision: 1.27 $
148
150
 */
149
151
public class Experiment 
150
 
  implements Serializable, OptionHandler {
 
152
  implements Serializable, OptionHandler, RevisionHandler {
151
153
  
152
154
  /** for serialization */
153
155
  static final long serialVersionUID = 44945596742646663L;
1170
1172
      System.err.println(ex.getMessage());
1171
1173
    }
1172
1174
  }
 
1175
  
 
1176
  /**
 
1177
   * Returns the revision string.
 
1178
   * 
 
1179
   * @return            the revision
 
1180
   */
 
1181
  public String getRevision() {
 
1182
    return RevisionUtils.extract("$Revision: 1.27 $");
 
1183
  }
1173
1184
} // Experiment