Example usage for weka.gui.beans InstanceListener acceptInstance

List of usage examples for weka.gui.beans InstanceListener acceptInstance

Introduction

In this page you can find the example usage for weka.gui.beans InstanceListener acceptInstance.

Prototype

void acceptInstance(InstanceEvent e);

Source Link

Document

Accept and process an instance event

Usage

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

License:Open Source License

protected void notifyInstanceListeners(InstanceEvent t) {
    synchronized (m_instanceListeners) {
        for (InstanceListener l : m_instanceListeners) {
            l.acceptInstance(t);
        }/* w ww .  j  ava 2s  .c om*/
    }
}