I use cayenne 3..
Callback ? I need to check the doc, because I don't know how to use it...
thanks for answer !
arnaud
2010/4/14 Michael Gentry <mgentr..asslight.net>
> Are you using Cayenne 2 or 3? What you did is fine for Cayenne 2, but
> in Cayenne 3 you can use a Callback method, too. Also, there is
> currently not a way in the modeler to set those initial values.
>
> mrg
>
>
> On Wed, Apr 14, 2010 at 8:28 AM, Arnaud Garcia <arnau..magemed-87.com>
> wrote:
> > Hello,
> >
> > Is it possible to add default values using the modeler ?
> >
> > if not, the good way is to overide the setPersistenteState ?
> >
> > thanks,
> >
> > arnaud
> >
> > public class SomeObjEntity extends _SomeObjEntity
> > {
> > public void setPersistenceState(int state)
> > {
> > super.setPersistenceState(state);
> >
> > // if the object was just created, set initial values
> > if (state == PersistenceState.NEW)
> > {
> > // Set all initial values here
> > }
> > }
> > }
> >
>
This archive was generated by hypermail 2.0.0 : Wed Apr 14 2010 - 13:01:15 EDT