Example usage for weka.gui.beans GraphListener acceptGraph

List of usage examples for weka.gui.beans GraphListener acceptGraph

Introduction

In this page you can find the example usage for weka.gui.beans GraphListener acceptGraph.

Prototype

void acceptGraph(GraphEvent e);

Source Link

Document

Describe acceptGraph method here.

Usage

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