List of usage examples for weka.gui.beans BatchClustererListener acceptClusterer
void acceptClusterer(BatchClustererEvent e);
From source file:org.pentaho.dm.kf.GroovyComponent.java
License:Open Source License
protected void notifyBatchClustererListeners(BatchClustererEvent t) { synchronized (m_batchClustererListeners) { for (BatchClustererListener l : m_batchClustererListeners) { l.acceptClusterer(t); }/* w ww . jav a2 s . c o m*/ } }