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

« back to all changes in this revision

Viewing changes to weka/classifiers/BVDecomposeSegCVSub.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:
45
45
import weka.core.Instances;
46
46
import weka.core.Option;
47
47
import weka.core.OptionHandler;
 
48
import weka.core.RevisionHandler;
 
49
import weka.core.RevisionUtils;
48
50
import weka.core.TechnicalInformation;
49
 
import weka.core.TechnicalInformation.Type;
50
 
import weka.core.TechnicalInformation.Field;
51
51
import weka.core.TechnicalInformationHandler;
52
52
import weka.core.Utils;
 
53
import weka.core.TechnicalInformation.Field;
 
54
import weka.core.TechnicalInformation.Type;
53
55
 
54
56
import java.io.BufferedReader;
55
57
import java.io.FileReader;
151
153
 * Options after -- are passed to the designated sub-learner. <p>
152
154
 *
153
155
 * @author Paul Conilione (paulc4321@yahoo.com.au)
154
 
 * @version $Revision: 1.6 $
 
156
 * @version $Revision: 1.7 $
155
157
 */
156
158
public class BVDecomposeSegCVSub
157
 
    implements OptionHandler, TechnicalInformationHandler {
 
159
    implements OptionHandler, TechnicalInformationHandler, RevisionHandler {
158
160
    
159
161
    /** Debugging mode, gives extra output if true. */
160
162
    protected boolean m_Debug;
1054
1056
        return result;
1055
1057
    }
1056
1058
    
1057
 
    
 
1059
    /**
 
1060
     * Returns the revision string.
 
1061
     * 
 
1062
     * @return          the revision
 
1063
     */
 
1064
    public String getRevision() {
 
1065
      return RevisionUtils.extract("$Revision: 1.7 $");
 
1066
    }
1058
1067
    
1059
1068
    /**
1060
1069
     * Test method for this class