Example usage for weka.gui.beans ChartListener acceptDataPoint

List of usage examples for weka.gui.beans ChartListener acceptDataPoint

Introduction

In this page you can find the example usage for weka.gui.beans ChartListener acceptDataPoint.

Prototype

void acceptDataPoint(ChartEvent e);

Source Link

Usage

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

License:Open Source License

protected void notifyChartListeners(ChartEvent t) {
    synchronized (m_chartListeners) {
        for (ChartListener l : m_chartListeners) {
            l.acceptDataPoint(t);
        }//from www .j  a v  a  2s.  c o  m
    }
}