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

« back to all changes in this revision

Viewing changes to weka/core/SystemInfo.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:
34
34
 * version, JVM settings etc. Useful for Bug-Reports.
35
35
 *
36
36
 * @author FracPete (fracpete at waikato dot ac dot nz)
37
 
 * @version $Revision: 1.4 $
 
37
 * @version $Revision: 1.5 $
38
38
 */
39
 
public class SystemInfo {
 
39
public class SystemInfo
 
40
  implements RevisionHandler {
 
41
  
40
42
  /** for storing the information */
41
43
  private Hashtable m_Info = null;
42
44
  
135
137
 
136
138
    return result;
137
139
  }
 
140
  
 
141
  /**
 
142
   * Returns the revision string.
 
143
   * 
 
144
   * @return            the revision
 
145
   */
 
146
  public String getRevision() {
 
147
    return RevisionUtils.extract("$Revision: 1.5 $");
 
148
  }
138
149
 
139
150
  /**
140
151
   * for printing the system info to stdout.