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

« back to all changes in this revision

Viewing changes to weka/associations/tertius/IndividualLiteral.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
 
26
26
package weka.associations.tertius;
27
27
 
 
28
import weka.core.RevisionUtils;
 
29
 
28
30
/**
29
31
 * @author Peter A. Flach
30
32
 * @author Nicolas Lachiche
31
 
 * @version $Revision: 1.4 $
 
33
 * @version $Revision: 1.5 $
32
34
 */
33
35
public class IndividualLiteral extends AttributeValueLiteral {
34
36
 
50
52
 
51
53
    return m_type;
52
54
  }
53
 
 
 
55
  
 
56
  /**
 
57
   * Returns the revision string.
 
58
   * 
 
59
   * @return            the revision
 
60
   */
 
61
  public String getRevision() {
 
62
    return RevisionUtils.extract("$Revision: 1.5 $");
 
63
  }
54
64
}
55
 
 
56
 
 
57
 
 
58
 
 
59
 
 
60
 
 
61
 
 
62
 
 
63
 
 
64
 
 
65
 
 
66
 
 
67
 
 
68