JVM Languages
jqa0702.txt
Associated article: So What is a Java Event Agent?
Tags: JVM Languages
Published source code accompanying the article by Eric Bruno in which he examines Java event agents. Also see JQA0702.ZIP.
Java Q&A
by Eric J. Bruno
Listing One
public class QuoteSource
{
protected Vector listeners;
public QuoteSource()
{
}
public void addListener(Object listenerObj)
{
listeners.add( listenerObj );
}
public void synchronized fire_quoteChange(double newQuote)
{
QuoteEvent qe = new QuoteEvent( this, newQuote );
// give ...


