i have the following code:
             int onPassivate(){
                System.out.println("passivate is running");
                return  3;

        }
        void onActivate(int a){
                System.out.println("onActivate:"+a);
        }
        void onActivate(){
                System.out.println("onActivate");
        }
i get the debug information:

onActivate:3
onActivate
return a object page
passivate is running

after that is a redirect response
onActivate is running before onPassivate,so where is the parameter '3' come
from?
i click a actionLink with context of a number,not 3.


-- 
View this message in context: 
http://www.nabble.com/where-does-onActivate-method%27s-pramameter-come-from--tp16882004p16882004.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


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

Reply via email to