Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 23   Methods: 0
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
CacheStarted.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 cache is started.
 10    * <p/>
 11    * Methods annotated with this annotation should accept a single
 12    * parameter, a {@link org.jboss.cache.notifications.event.CacheStartedEvent} otherwise a {@link org.jboss.cache.notifications.IncorrectCacheListenerException}
 13    * will be thrown when registering your listener.
 14    *
 15    * @author <a href="mailto:manik@jboss.org">Manik Surtani</a>
 16    * @see CacheListener
 17    * @since 2.0.0
 18    */
 19    @Retention(RetentionPolicy.RUNTIME)
 20    @Target(ElementType.METHOD)
 21    public @interface CacheStarted
 22    {
 23    }