JVM Languages
jbeans.txt
Associated article: Java Beans and the New Event Model
Tags: JVM Languages
Published source code accompanying the article by Eric Giguere in which he examines Java Beans, a component model for building and using Java-based components. Eric examines the Java Beans specification and describes the event model that lets you glue components together. Also see JBEANS.ZIP.
Java Beans and the New Events Model
by Eric Giguere
Listing One
public class SimpleBean {
// Define the 'Visible' property
public boolean getVisible() { return _visible; }
public void setVisible( boolean visible ) { _visible = visible; }
private boolean _visible;
}
Listing Two
(a)
// A simple (but ...


