Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 25   Methods: 0
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
Tx.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    * Annotation for PojoCache interceptor stack. This one checks for tx.
 17    *
 18    * @author Ben Wang
 19    * @version $Id: Tx.java,v 1.2 2007/05/23 10:28:53 msurtani Exp $
 20    */
 21    @Retention(RetentionPolicy.RUNTIME)
 22    @Target(ElementType.METHOD)
 23    public @interface Tx
 24    {
 25    }