Add Propertychangelistener support
----------------------------------
Key: IBATIS-608
URL: https://issues.apache.org/jira/browse/IBATIS-608
Project: iBatis for Java
Issue Type: New Feature
Components: Tools
Reporter: joseph olson
Propertychangelstener support is needed for a ibatis javabean will work with
JavaBeans binding
For each property setting I have been adding this code:
public void setPrimarykey(Integer primarykey) {
final Integer old = this.primarykey;
this.primarykey = primarykey;
propertyChangeSupport. firePropertyChange("primarykey", old,
primarykey);
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.