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

« back to all changes in this revision

Viewing changes to weka/core/converters/Saver.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:
22
22
 
23
23
package weka.core.converters;
24
24
 
 
25
import weka.core.Instance;
 
26
import weka.core.Instances;
 
27
import weka.core.RevisionHandler;
 
28
 
25
29
import java.io.File;
 
30
import java.io.IOException;
26
31
import java.io.OutputStream;
27
 
import java.io.IOException;
28
32
import java.io.Serializable;
29
 
import weka.core.Instances;
30
 
import weka.core.Instance;
31
33
 
32
34
/** 
33
35
 * Interface to something that can save Instances to an output destination in some
35
37
 *
36
38
 * @author Mark Hall (mhall@cs.waikato.ac.nz)
37
39
 * @author Stefan Mutter (mutter@cs.waikato.ac.nz)
38
 
 * @version $Revision: 1.3 $
 
40
 * @version $Revision: 1.4 $
39
41
 */
40
 
public interface Saver extends Serializable {
 
42
public interface Saver
 
43
  extends Serializable, RevisionHandler {
41
44
    
42
45
    /** The retrieval modes */
43
46
  static final int NONE = 0;