Package weka.gui.beans
Interface UserRequestAcceptor
-
- All Known Implementing Classes:
Associator,AttributeSummarizer,Classifier,ClassifierPerformanceEvaluator,Clusterer,ClustererPerformanceEvaluator,CostBenefitAnalysis,CrossValidationFoldMaker,DataVisualizer,Filter,GraphViewer,MetaBean,ModelPerformanceChart,ScatterPlotMatrix,StripChart,TextViewer,TrainTestSplitMaker
public interface UserRequestAcceptorInterface to something that can accept requests from a user to perform some action- Since:
- 1.0
- Version:
- $Revision: 1.3 $
- Author:
- Mark Hall
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.EnumerationenumerateRequests()Get a list of performable requestsvoidperformRequest(java.lang.String requestName)Perform the named request
-
-
-
Method Detail
-
enumerateRequests
java.util.Enumeration enumerateRequests()
Get a list of performable requests- Returns:
- an
Enumerationvalue
-
performRequest
void performRequest(java.lang.String requestName)
Perform the named request- Parameters:
requestName- aStringvalue- Throws:
java.lang.IllegalArgumentException- if an error occurs
-
-