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

« back to all changes in this revision

Viewing changes to weka/core/Attribute.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;
24
24
 
 
25
import java.io.IOException;
25
26
import java.io.Serializable;
 
27
import java.io.StreamTokenizer;
 
28
import java.io.StringReader;
26
29
import java.text.ParseException;
27
30
import java.text.SimpleDateFormat;
28
31
import java.util.Date;
29
32
import java.util.Enumeration;
30
33
import java.util.Hashtable;
31
34
import java.util.Properties;
32
 
import java.io.StreamTokenizer;
33
 
import java.io.StringReader;
34
 
import java.io.IOException;
35
35
 
36
36
/** 
37
37
 * Class for handling an attribute. Once an attribute has been created,
87
87
 * </code><p>
88
88
 *
89
89
 * @author Eibe Frank (eibe@cs.waikato.ac.nz)
90
 
 * @version $Revision: 1.44 $
 
90
 * @version $Revision: 1.45 $
91
91
 */
92
92
public class Attribute
93
 
  implements Copyable, Serializable {
 
93
  implements Copyable, Serializable, RevisionHandler {
94
94
 
95
95
  /** for serialization */
96
96
  static final long serialVersionUID = -742180568732916383L;
1478
1478
                                         + " less than lower bound ("
1479
1479
                                         + m_LowerBound + ")!");
1480
1480
  }
 
1481
  
 
1482
  /**
 
1483
   * Returns the revision string.
 
1484
   * 
 
1485
   * @return            the revision
 
1486
   */
 
1487
  public String getRevision() {
 
1488
    return RevisionUtils.extract("$Revision: 1.45 $");
 
1489
  }
1481
1490
 
1482
1491
  /**
1483
1492
   * Simple main method for testing this class.