Re: Question about new ...()

2011-03-18 Thread Thiago H. de Paula Figueiredo
On Fri, 18 Mar 2011 11:25:06 -0300, degressor wrote: Why? Or maybe I don't understand something? You can't instantiate directly classes that are pages, components, mixins or are in the base package, because they're modified by Tapestry when loading them. Actually, you can, but they won't

Question about new ...()

2011-03-18 Thread degressor
can't use new like this: Test cds = new Test(); dooSomething(new Test()); but if I put new Test() directly in the function-call it works: dooSomething(new Test()); Why? Or maybe I don't understand something? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Que