Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 17   Methods: 0
NCLOC: 6   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
NodeEvent.java - - - -
coverage
 1    package org.jboss.cache.notifications.event;
 2   
 3    import org.jboss.cache.Fqn;
 4   
 5    /**
 6    * Transactional events that additionally expose an Fqn as such events pertain to a specific node.
 7    *
 8    * @author <a href="mailto:manik@jboss.org">Manik Surtani</a>
 9    * @since 2.0.0
 10    */
 11    public interface NodeEvent extends TransactionalEvent
 12    {
 13    /**
 14    * @return the Fqn pointing to the node that is affected.
 15    */
 16    Fqn getFqn();
 17    }