Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 26   Methods: 0
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
Reentrant.java - - - -
coverage
 1    /*
 2    * JBoss, Home of Professional Open Source
 3    *
 4    * Distributable under LGPL license.
 5    * See terms of license at gnu.org.
 6    */
 7   
 8    package org.jboss.cache.pojo.annotation;
 9   
 10    import java.lang.annotation.ElementType;
 11    import java.lang.annotation.Retention;
 12    import java.lang.annotation.RetentionPolicy;
 13    import java.lang.annotation.Target;
 14   
 15    /**
 16    * Annoataion that wraps the Prepare annotation of JBossAop.
 17    *
 18    * @author Ben Wang
 19    * Date: Jan 22, 2006
 20    * @version $Id: Reentrant.java,v 1.1 2007/01/13 15:55:05 bwang Exp $
 21    */
 22    @Retention(RetentionPolicy.RUNTIME)
 23    @Target(ElementType.TYPE)
 24    public @interface Reentrant
 25    {
 26    }