Clover coverage report - brownies library - 1.0-beta-1
Coverage timestamp: 月 8 16 2004 17:14:42 GMT+09:00
file stats: LOC: 21   Methods: 0
NCLOC: 7   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
WindowContent.java - - - -
coverage
 1   
 /*
 2   
  * brownies and its relative products are published under the terms
 3   
  * of the Apache Software License.
 4   
  * 
 5   
  * Created on 2004/07/11 23:00:31
 6   
  */
 7   
 package org.asyrinx.brownie.swing.content;
 8   
 
 9   
 /**
 10   
  * @author akima
 11   
  */
 12   
 public interface WindowContent {
 13   
 
 14   
     public void beforeShow();
 15   
     public void afterShow();
 16   
 
 17   
     public void beforeHide();
 18   
     public void afterHide();
 19   
 
 20   
 }
 21