Is there a library or technique to listen to all changeable events on swing ui objects? Specifically the data.
For instance, I have a JPanel with a JTextArea, JCheckBox, JComboBox, etc. Is there a common way to say "If the data in this changes, notify me"? I don't care about borders changing, and other UI event stuff, just user data changing.
I've tried propertychangelister, but I can't seem to find a common property, or a common class that will do this.