Hello,

Is it possible to use multiple @HandlesEvent on a single action method? 
I don't like my current solution which is like this:

@HandlesEvent('nowy')
public Resolution create() {
    return edit();
}

@HandlesEvent('edycja')
public Resolution edit() {
    // code
}



Wouldn't it be better to just write

@HandlesEvents({
    @HandlesEvent('nowy')
    @HandlesEvent('edycja')
})
public Resolution edit() {
    // code
}


Best regards,
Grzegorz


------------------------------------------------------------------------------
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to