JVM Languages
propedit.txt
Associated article: Writing JavaBean Property Editors
Tags: JVM Languages
Published source code accompanying the article by Morgan Kinne in which he shows how you build JavaBean property editors, focusing on the relationships between the visual tool, property editor, and bean. Also see PROPEDIT.ZIP.
Writing JavaBean Property Editors by Morgan Kinne Listing One package mybeans; import java.awt.*; import java.beans.PropertyChangeListener; import java.beans.PropertyChangeSupport; import java.beans.PropertyVetoException; import java.beans.VetoableChangeListener; import java.beans.VetoableChangeSupport; import java.io.Serializable; // CaseAwareTextDisplay public ...


