Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 24   Methods: 0
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
CacheBlocked.java - - - -
coverage
 1    package org.jboss.cache.notifications.annotation;
 2   
 3    import java.lang.annotation.ElementType;
 4    import java.lang.annotation.Retention;
 5    import java.lang.annotation.RetentionPolicy;
 6    import java.lang.annotation.Target;
 7   
 8    /**
 9    * This annotation should be used on methods that need to be notified when a JGroups BLOCK event occurs.
 10    * <p/>
 11    * Methods annotated with this annotation should be public and take in a single parameter, a {@link org.jboss.cache.notifications.event.CacheBlockedEvent}
 12    * otherwise an {@link org.jboss.cache.notifications.IncorrectCacheListenerException} will be thrown when registering
 13    * your cache listener.
 14    *
 15    * @author <a href="mailto:manik@jboss.org">Manik Surtani</a>
 16    * @see CacheListener
 17    * @see org.jboss.cache.notifications.event.CacheBlockedEvent
 18    * @since 2.0.0
 19    */
 20    @Retention(RetentionPolicy.RUNTIME)
 21    @Target(ElementType.METHOD)
 22    public @interface CacheBlocked
 23    {
 24    }