weka.gui.beans.CostBenefitAnalysisBeanInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weka-stable Show documentation
Show all versions of weka-stable Show documentation
The Waikato Environment for Knowledge Analysis (WEKA), a machine
learning workbench. This is the stable version. Apart from bugfixes, this version
does not receive any other updates.
package weka.gui.beans;
import java.beans.EventSetDescriptor;
import java.beans.SimpleBeanInfo;
/**
* Bean info class for the cost/benefit analysis
*
* @author Mark Hall (mhall{[at]}pentaho{[dot]}com)
* @version $Revision: 5821 $
*/
public class CostBenefitAnalysisBeanInfo extends SimpleBeanInfo {
/**
* Get the event set descriptors for this bean
*
* @return an EventSetDescriptor[]
value
*/
public EventSetDescriptor [] getEventSetDescriptors() {
// hide all gui events
EventSetDescriptor [] esds = { };
return esds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy