Package org.apache.tapestry5.runtime
Class PageLifecycleAdapter
- java.lang.Object
 - 
- org.apache.tapestry5.runtime.PageLifecycleAdapter
 
 
- 
- All Implemented Interfaces:
 PageLifecycleListener
public class PageLifecycleAdapter extends Object implements PageLifecycleListener
Deprecated.in 5.3.4, asPageLifecycleListenerhas been deprecatedEmpty implementation of thePageLifecycleListenerinterface. 
- 
- 
Constructor Summary
Constructors Constructor Description PageLifecycleAdapter()Deprecated. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidcontainingPageDidAttach()Deprecated.Invoked when a page is first attached to the current request, giving components a chance to initialize for the current request.voidcontainingPageDidDetach()Deprecated.Invoked when the page is detached, allowing components a chance to clear out any temporary or client specific state.voidcontainingPageDidLoad()Deprecated.Invoked when the page finishes loading.voidrestoreStateBeforePageAttach()Deprecated.A kind of "pre-attach" phase allowing components to restore internal state before handling the actual attach; this is primarily used to restore persisted fields. 
 - 
 
- 
- 
Constructor Detail
- 
PageLifecycleAdapter
public PageLifecycleAdapter()
Deprecated. 
 - 
 
- 
Method Detail
- 
containingPageDidAttach
public void containingPageDidAttach()
Deprecated.Description copied from interface:PageLifecycleListenerInvoked when a page is first attached to the current request, giving components a chance to initialize for the current request.- Specified by:
 containingPageDidAttachin interfacePageLifecycleListener
 
- 
containingPageDidDetach
public void containingPageDidDetach()
Deprecated.Description copied from interface:PageLifecycleListenerInvoked when the page is detached, allowing components a chance to clear out any temporary or client specific state.- Specified by:
 containingPageDidDetachin interfacePageLifecycleListener
 
- 
containingPageDidLoad
public void containingPageDidLoad()
Deprecated.Description copied from interface:PageLifecycleListenerInvoked when the page finishes loading. This occurs once all components are loaded and all parameters have been set.- Specified by:
 containingPageDidLoadin interfacePageLifecycleListener
 
- 
restoreStateBeforePageAttach
public void restoreStateBeforePageAttach()
Deprecated.Description copied from interface:PageLifecycleListenerA kind of "pre-attach" phase allowing components to restore internal state before handling the actual attach; this is primarily used to restore persisted fields.- Specified by:
 restoreStateBeforePageAttachin interfacePageLifecycleListener
 
 - 
 
 -