Example usage for weka.gui.beans DataSourceListener acceptDataSet

List of usage examples for weka.gui.beans DataSourceListener acceptDataSet

Introduction

In this page you can find the example usage for weka.gui.beans DataSourceListener acceptDataSet.

Prototype

void acceptDataSet(DataSetEvent e);

Source Link

Usage

From source file:org.pentaho.dm.kf.GroovyComponent.java

License:Open Source License

protected void notifyDataSourceListeners(DataSetEvent t) {
    synchronized (m_dataSourceListeners) {
        for (DataSourceListener l : m_dataSourceListeners) {
            l.acceptDataSet(t);
        }//w w  w . j a v  a 2s  . c o  m
    }
}