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

« back to all changes in this revision

Viewing changes to weka/associations/tertius/Predicate.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:
24
24
 
25
25
package weka.associations.tertius;
26
26
 
 
27
import weka.core.RevisionHandler;
 
28
import weka.core.RevisionUtils;
 
29
 
27
30
import java.io.Serializable;
28
31
import java.util.ArrayList;
29
32
 
30
33
/**
31
34
 * @author Peter A. Flach
32
35
 * @author Nicolas Lachiche
33
 
 * @version $Revision: 1.4 $
 
36
 * @version $Revision: 1.5 $
34
37
 */
35
 
public class Predicate implements Serializable {
 
38
public class Predicate
 
39
  implements Serializable, RevisionHandler {
36
40
 
37
41
  /** for serialization */
38
42
  private static final long serialVersionUID = -8374702481965026640L;
102
106
    }
103
107
    return text.toString();
104
108
  }
 
109
  
 
110
  /**
 
111
   * Returns the revision string.
 
112
   * 
 
113
   * @return            the revision
 
114
   */
 
115
  public String getRevision() {
 
116
    return RevisionUtils.extract("$Revision: 1.5 $");
 
117
  }
105
118
}
106