Re: Why does this fail???

2009-09-07 Thread Madtyn
I forgot I posted this problem. Yes, you're right and I solved the problem changing the switch and inserting and if-else if structure instead. I was really confused about the same variable causing an error being used in different ways of making the same thing (retrieve the value), but now with the

Re: Why does this fail???

2009-09-06 Thread Thiago H. de Paula Figueiredo
Howard once said that sometimes Javassist (used by Tapestry to transform classes) sometimes doesn't handle large event handler methods correctly. Try refactoring your method to reduce it. By the way, a switch inside a switch is not recommended coding: refactor it too. ;) -- Thiago

Why does this fail???

2009-09-04 Thread Madtyn
Hello. I keep trying to use the EventContext and made some advances. As Joshua said the enums can be sent between the onPassivate and onActivate methods (Thank you Joshua :). But the problem is that I keep finding very strange problems. I have isolated the piece of code that is giving me

Re: Why does this fail???

2009-09-04 Thread Alfonso Quiroga
I'm from a Spanish language country and I want to correct something: /* Now, the destiny page*/is: /* Now, the TARGET page*/ On Fri, Sep 4, 2009 at 9:26 PM, Madtynmad...@gmail.com wrote:  Hello. I keep trying to use the EventContext and made some advances. As Joshua said the