Can an option be added to the javaModelGenerator that will generate the code for property change events in the generated setters?
For example:
public void setName(String name) {
String prev = getName();
pda.setName(name);
firePropertyChange("name", prev, name);
}and then also support for vetoeable property change events (I just thought of this)
We are going to start using a binding framework so this will be extremely useful.
Scott Warner
