~ubuntu-branches/ubuntu/wily/weka/wily

« back to all changes in this revision

Viewing changes to src/main/java/weka/classifiers/trees/FT.java

  • Committer: Bazaar Package Importer
  • Author(s): tony mancill
  • Date: 2011-08-05 22:40:50 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110805224050-a01vkwst9epdi4sw
Tags: 3.6.5-1
* Team upload.
* New upstream version (Closes: #632082, #598400)
* Bump Standards-Version to 3.9.2 (no changes required).
* Freshen jar.patch; remove java_cup.patch (incorporated upstream)
* Add README.source to document process of obtaining .png resources.
* Add myself to Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
 *
117
117
 * @author Jo\~{a}o Gama
118
118
 * @author Carlos Ferreira  
119
 
 * @version $Revision: 1.6 $
 
119
 * @version $Revision: 5535 $
120
120
 */
121
121
public class FT 
122
122
  extends Classifier 
189
189
   */
190
190
  public Capabilities getCapabilities() {
191
191
    Capabilities result = super.getCapabilities();
 
192
    result.disableAll();
192
193
 
193
194
    // attributes
194
195
    result.enable(Capability.NOMINAL_ATTRIBUTES);
784
785
   * @return            the revision
785
786
   */
786
787
  public String getRevision() {
787
 
    return RevisionUtils.extract("$Revision: 1.6 $");
 
788
    return RevisionUtils.extract("$Revision: 5535 $");
788
789
  }
789
790
  
790
791
  /**