Clover coverage report - brownies library - 1.0-beta-1
Coverage timestamp: 月 8 16 2004 17:14:42 GMT+09:00
file stats: LOC: 25   Methods: 0
NCLOC: 4   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
IFinalizableScriptProcessor.java - - - -
coverage
 1   
 /*
 2   
  * Joey and its relative products are published under the terms
 3   
  * of the Apache Software License.
 4   
  */
 5   
 /*
 6   
  * Created on 2004/01/07
 7   
  */
 8   
 package org.asyrinx.brownie.tapestry.script;
 9   
 
 10   
 import org.apache.tapestry.IScriptProcessor;
 11   
 
 12   
 /**
 13   
  * @author akima
 14   
  */
 15   
 public interface IFinalizableScriptProcessor extends IScriptProcessor {
 16   
 
 17   
     /**
 18   
      * Adds finalization script. Finalization script is executed once, when the
 19   
      * containing page loads. Effectively, this means that initialization script
 20   
      * is stored inside the HTML &lt;body&gt; element's <code>onload</code>
 21   
      * event handler.
 22   
      */
 23   
     public void addFinalizationScript(String script);
 24   
 
 25   
 }