Hi,

We have an abstract parent class with an activation handler declared like
this:

@OnEvent( EventConstants.ACTIVATE )
void activate( EventContext ec ) (Called)

And an extending class with an activation handler declared like this:

@OnEvent( EventConstants.ACTIVATE )
Object activate( EventContext ec ) (Not called during activation)

After updating to beta-31 the activation handler in the extending class is
not called anymore.

Changing the signature to use the naming convention in the extending class
gets things going again:

Object onActivate( EventContext ec )  (Called after parent activate)

Has anyone else seen this behavior after upgrading from beta-22?

-- 
Chris

Reply via email to