List of usage examples for weka.gui.beans GraphListener acceptGraph
void acceptGraph(GraphEvent e);
acceptGraph
method here. From source file:org.pentaho.dm.kf.GroovyComponent.java
License:Open Source License
protected void notifyGraphListeners(GraphEvent t) { synchronized (m_graphListeners) { for (GraphListener l : m_graphListeners) { l.acceptGraph(t); }// www . j a va 2 s . c o m } }