List of usage examples for weka.gui.beans ThresholdDataListener acceptDataSet
void acceptDataSet(ThresholdDataEvent e);
From source file:org.pentaho.dm.kf.GroovyComponent.java
License:Open Source License
protected void notifyThresholdDataListeners(ThresholdDataEvent t) { synchronized (m_thresholdDataListeners) { for (ThresholdDataListener l : m_thresholdDataListeners) { l.acceptDataSet(t); }//from ww w .j ava 2 s .co m } }