List of usage examples for weka.gui.beans ChartListener acceptDataPoint
void acceptDataPoint(ChartEvent e);
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 } }