Clover coverage report - Code Coverage for tapestry release 3.1-alpha-1
Coverage timestamp: Mon Feb 21 2005 09:16:14 EST
file stats: LOC: 60   Methods: 1
NCLOC: 11   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
TapestryConstants.java - - 0% 0%
coverage
 1   
 // Copyright 2005 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.tapestry;
 16   
 
 17   
 /**
 18   
  * @author Howard M. Lewis Ship
 19   
  * @since 3.1
 20   
  */
 21   
 public class TapestryConstants
 22   
 {
 23   
     /**
 24   
      * The name ("Home") of the default page presented when a user first accesses the application.
 25   
      * 
 26   
      * @see org.apache.tapestry.engine.HomeService
 27   
      */
 28   
     
 29   
     public static final String HOME_PAGE = "Home";
 30   
     /**
 31   
      * The name ("Exception") of the page used for reporting exceptions.
 32   
      * <p>
 33   
      * Such a page must have a writable JavaBeans property named 'exception' of type
 34   
      * <code>java.lang.Throwable</code>.
 35   
      */
 36   
     
 37   
     public static final String EXCEPTION_PAGE = "Exception";
 38   
     /**
 39   
      * The name ("StaleLink") of the page used for reporting stale links.
 40   
      * <p>
 41   
      * The page must implement a writeable JavaBeans proeprty named 'message' of type
 42   
      * <code>String</code>.
 43   
      */
 44   
     
 45   
     public static final String STALE_LINK_PAGE = "StaleLink";
 46   
     /**
 47   
      * The name ("StaleSession") of the page used for reporting state sessions.
 48   
      */
 49   
     
 50   
     public static final String STALE_SESSION_PAGE = "StaleSession";
 51   
     /**
 52   
      * Name of the cookie written to the client web browser to identify the locale.
 53   
      */
 54   
     
 55   
     public static final String LOCALE_COOKIE_NAME = "org.apache.tapestry.locale";
 56   
 
 57  0
     private TapestryConstants()
 58   
     {
 59   
     }
 60   
 }