Coverage Report - org.apache.tapestry5.runtime.PageLifecycleListener
 
Classes in this File Line Coverage Branch Coverage Complexity
PageLifecycleListener
N/A
N/A
1
 
 1  
 // Copyright 2006, 2009 The Apache Software Foundation
 2  
 //
 3  
 // Licensed under the Apache License, Version 2.0 (the "License");
 4  
 // you may not use this file except in compliance with the License.
 5  
 // You may obtain a copy of the License at
 6  
 //
 7  
 //     http://www.apache.org/licenses/LICENSE-2.0
 8  
 //
 9  
 // Unless required by applicable law or agreed to in writing, software
 10  
 // distributed under the License is distributed on an "AS IS" BASIS,
 11  
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 12  
 // See the License for the specific language governing permissions and
 13  
 // limitations under the License.
 14  
 
 15  
 package org.apache.tapestry5.runtime;
 16  
 
 17  
 /**
 18  
  * A set of methods that allow components to know about page-level operations.
 19  
  */
 20  
 public interface PageLifecycleListener
 21  
 {
 22  
     /**
 23  
      * Invoked when the page finishes loading. This occurs once all components are loaded and all parameters have been
 24  
      * set.
 25  
      */
 26  
     void containingPageDidLoad();
 27  
 
 28  
     /**
 29  
      * Invoked when the page is detached, allowing components a chance to clear out any temporary or client specific
 30  
      * state.
 31  
      */
 32  
     void containingPageDidDetach();
 33  
 
 34  
     /**
 35  
      * Invoked when a page is first attached to the current request, giving components a chance to initialize for the
 36  
      * current request.
 37  
      */
 38  
     void containingPageDidAttach();
 39  
 
 40  
     /**
 41  
      * A kind of "pre-attach" phase allowing components to restore internal state before handling the actual attach;
 42  
      * this is primarily used to restore persisted fields.
 43  
      *
 44  
      * @since 5.1.0.1
 45  
      */
 46  
     void restoreStateBeforePageAttach();
 47  
 }