package de.ugoe.cs.cpdp.wekaclassifier; import weka.core.Instances; /** *

* Interface for test data aware classifier implementations *

* * @author Steffen Herbold */ public interface ITestAwareClassifier { /** *

* passes the test data to the classifier *

* * @param testdata * the test data */ public void setTestdata(Instances testdata); }