Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package j48; import weka.classifiers.Classifier; import weka.core.Instances; /** * * @author Teofebano */ public class node extends Classifier { // attribute @Override public void buildClassifier(Instances i) throws Exception { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } public void buildTree(Instances trainingData) { } }