Thanks for your reply Howard.
It's working perfectly now.

Luis Neves



[EMAIL PROTECTED] wrote:


> Both AbtractEngine and AbstractComponent implement a 
> listeners property.  Your visit should add something 
> like:
> 
> private transient ListenerMap listeners = null;
> 
> public ListenerMap getListeners()
> {
>   if (listeners == null)
>     listeners = new ListenerMap(this);
> 
>   return listeners;
> }
> 
> 
> That should do it.  Note that the listener map should be 
> transient ... it can be reconstructed in a new JVM after 
> de-serialization.  Pardon any typos.
> 
> 
> --
> [EMAIL PROTECTED]
> 
> http://tapestry.sf.net



_______________________________________________________________

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

_______________________________________________
Tapestry-developer mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/tapestry-developer

Reply via email to