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

« back to all changes in this revision

Viewing changes to weka/core/SerializationHelper.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:
36
36
 * objects to and fro files or streams.
37
37
 * 
38
38
 * @author  fracpete (fracpete at waikato dot ac dot nz)
39
 
 * @version $Revision: 1.1 $
 
39
 * @version $Revision: 1.2 $
40
40
 */
41
 
public class SerializationHelper {
 
41
public class SerializationHelper
 
42
  implements RevisionHandler {
42
43
 
43
44
  /** the field name of serialVersionUID */
44
45
  public final static String SERIAL_VERSION_UID = "serialVersionUID";
250
251
  }
251
252
  
252
253
  /**
 
254
   * Returns the revision string.
 
255
   * 
 
256
   * @return            the revision
 
257
   */
 
258
  public String getRevision() {
 
259
    return RevisionUtils.extract("$Revision: 1.2 $");
 
260
  }
 
261
  
 
262
  /**
253
263
   * Outputs information about a class on the commandline, takes class
254
 
   * name as arguments
 
264
   * name as arguments.
255
265
   * 
256
266
   * @param args        the classnames to check
257
267
   */