List of usage examples for weka.gui.beans TextListener acceptText
void acceptText(TextEvent e);
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 } }