new functionality concerning setting member variables

2005-04-07 Thread Bobby Lawrence
I don't know if this is the correct place to ask, but... Is it possible to tell OJB to call setter methods on the descriptor classes instead of attempting to get the field, calling myField.setAccessible(true), and calling the myField.set() method? This will enforce the practice of creating

Re: new functionality concerning setting member variables

2005-04-07 Thread Thomas Dudziak
Is it possible to tell OJB to call setter methods on the descriptor classes instead of attempting to get the field, calling myField.setAccessible(true), and calling the myField.set() method? This will enforce the practice of creating good JavaBeans with the proper accessor methods. It will

Re: new functionality concerning setting member variables

2005-04-07 Thread Bobby Lawrence
Thanx! Armin Waibel wrote: Hi Bobby, have a look at this http://db.apache.org/ojb/docu/guides/advanced-technique.html#Change+PersistentField+Class regards, Armin Bobby Lawrence wrote: I don't know if this is the correct place to ask, but... Is it possible to tell OJB to call setter methods on