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

« back to all changes in this revision

Viewing changes to weka/classifiers/EnsembleLibrary.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.classifiers;
24
24
 
 
25
import weka.core.RevisionHandler;
 
26
import weka.core.RevisionUtils;
25
27
import weka.gui.ensembleLibraryEditor.LibrarySerialization;
26
28
 
27
29
import java.beans.PropertyChangeListener;
48
50
 * and loading models from lists.  
49
51
 * 
50
52
 * @author  Robert Jung (mrbobjung@gmail.com)
51
 
 * @version $Revision: 1.1 $
 
53
 * @version $Revision: 1.2 $
52
54
 */
53
55
public class EnsembleLibrary
54
 
  implements Serializable {
 
56
  implements Serializable, RevisionHandler {
55
57
  
56
58
  /** for serialization */
57
59
  private static final long serialVersionUID = -7987178904923706760L;
378
380
      
379
381
    }
380
382
  }
 
383
  
 
384
  /**
 
385
   * Returns the revision string.
 
386
   * 
 
387
   * @return            the revision
 
388
   */
 
389
  public String getRevision() {
 
390
    return RevisionUtils.extract("$Revision: 1.2 $");
 
391
  }
381
392
}