Re: where does onActivate method's pramameter come from?

2008-04-25 Thread Filip S. Adamsen
Hi, Please see http://tapestry.apache.org/tapestry5/tapestry-core/guide/pagenav.html. -Filip On 2008-04-25 04:08, luna_guo wrote: i have the following code: int onPassivate(){ System.out.println(passivate is running); return 3; }

where does onActivate method's pramameter come from?

2008-04-24 Thread luna_guo
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(){