Example usage for weka.gui.beans BatchClustererListener acceptClusterer

List of usage examples for weka.gui.beans BatchClustererListener acceptClusterer

Introduction

In this page you can find the example usage for weka.gui.beans BatchClustererListener acceptClusterer.

Prototype

void acceptClusterer(BatchClustererEvent e);

Source Link

Document

Accept a BatchClustererEvent

Usage

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*/
    }
}