Page instance variables
implement PageBeginREnderListener and then in pageBeginRenderListener you
should do initialization
2005/9/6, Leonardo Quijano Vincenzi <[EMAIL PROTECTED]>:
> Seems like initialize() is deprecated. What's the correct way of
> initializing instance variables
implement PageBeginREnderListener and then in pageBeginRenderListener
you should do initialization
2005/9/6, Leonardo Quijano Vincenzi <[EMAIL PROTECTED]>:
> Seems like initialize() is deprecated. What's the correct way of
> initializing instance variables for T4?
>
> --
> Ing. Leonardo Quijano V
Seems like initialize() is deprecated. What's the correct way of
initializing instance variables for T4?
--
Ing. Leonardo Quijano Vincenzi
Director Técnico
DTQ Software
Patrick Casey escribió:
Each thread gets its own unique copy of a page. It's not guaranteed
to be the *same* page e
itialize() method on
your page.
--- Pat
> -Original Message-
> From: Leonardo Quijano Vincenzi [mailto:[EMAIL PROTECTED]
> Sent: Monday, September 05, 2005 11:05 AM
> To: Tapestry users
> Subject: Page instance variables
>
> Just 2 quick questions:
>
>
Just 2 quick questions:
1) Is it allowed to put instance variables on a Tapestry Page? Such as:
public abstract class SomePage extends Basepage {
private int someField;
}
I guess there are issues with concurrent access, but I couldn't find any
definite source on this (a FAQ entry maybe?).