JVM Languages
jqa700.txt
Associated article: How Do I Build a Find?
Tags: JVM Languages
Published source code accompanying the article by David Perelman-Hall in which he adds a "find" functionality to Java. Also see JQA700.ZIP.
Java Q&A
by David Perelman-Hall
Listing One
// java.awt.event.TextListener interface implementation
/** Whenever the text value changes, let any registered
* FindEnabledListeners know.
*/
public void textValueChanged(TextEvent event)
{
// Create a FindEnabledEvent with this as its source. Set the ...


