Example usage for weka.gui.beans TextListener acceptText

List of usage examples for weka.gui.beans TextListener acceptText

Introduction

In this page you can find the example usage for weka.gui.beans TextListener acceptText.

Prototype

void acceptText(TextEvent e);

Source Link

Document

Accept and process a text event

Usage

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

License:Open Source License

protected void notifyTextListeners(TextEvent t) {
    synchronized (m_textListeners) {
        for (TextListener l : m_textListeners) {
            l.acceptText(t);
        }//www . j av a 2  s .co m
    }
}