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

« back to all changes in this revision

Viewing changes to weka/associations/gsp/Element.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:
25
25
import weka.core.FastVector;
26
26
import weka.core.Instance;
27
27
import weka.core.Instances;
 
28
import weka.core.RevisionHandler;
 
29
import weka.core.RevisionUtils;
28
30
 
29
31
import java.io.Serializable;
30
32
 
32
34
 * Class representing an Element, i.e., a set of events/items.
33
35
 * 
34
36
 * @author  Sebastian Beer
35
 
 * @version $Revision: 1.1 $
 
37
 * @version $Revision: 1.2 $
36
38
 */
37
39
public class Element
38
 
  implements Cloneable, Serializable {
 
40
  implements Cloneable, Serializable, RevisionHandler {
39
41
 
40
42
  /** for serialization */
41
43
  private static final long serialVersionUID = -7900701276019516371L;
288
290
 
289
291
    return result;
290
292
  }
 
293
  
 
294
  /**
 
295
   * Returns the revision string.
 
296
   * 
 
297
   * @return            the revision
 
298
   */
 
299
  public String getRevision() {
 
300
    return RevisionUtils.extract("$Revision: 1.2 $");
 
301
  }
291
302
}