Hi Jason

From: "Jason van Zyl" <[EMAIL PROTECTED]>
> Hi James,
>
> Is is possible to control at which point updaters are called with newly
> created objects?
>
> In Maven the project object has a method:
>
> void addDistribution(Distribution distribution)
> {
>     distributions.add(distribution);
> }
>
> But I would additionally like to place the distributions in a Map so
> that I can subsequently look them up but it appears that the
> distribution object added is not yet complete.
>
> This isn't a huge deal because I can lazily initialize the distribution
> Map I need but I was just wondering if the addXXX() method can be
> delayed until the object has been fully populated.

It'd be a good idea to do this by default I think.

Some hacking of the BeanCreateRule should do the trick; to move the call of
the updater from the begin() method, called on the start of the element to
the end() method after the bean has been completely initialized. We'd
probably have to introduce a stack to keep track of the beans; I think one
of the reasons I did it this way was I could avoid writing that bit of code
;-)

Wanna have a go or would you like me to do it?

James


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to