Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 34   Methods: 0
NCLOC: 13   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
TreeCacheViewMBean.java - - - -
coverage
 1    /*
 2    * JBoss, the OpenSource J2EE webOS
 3    *
 4    * Distributable under LGPL license.
 5    * See terms of license at gnu.org.
 6    */
 7    package org.jboss.cache;
 8   
 9    import org.jboss.cache.jmx.CacheJmxWrapperMBean;
 10   
 11   
 12    /**
 13    * MBean interface.
 14    *
 15    * @author <a href="mailto:bela@jboss.org">Bela Ban</a> March 27 2003
 16    */
 17    public interface TreeCacheViewMBean
 18    {
 19    void create() throws Exception;
 20   
 21    void start() throws Exception;
 22   
 23    void stop() ;
 24   
 25    void destroy() ;
 26   
 27    Cache getCache();
 28   
 29    void setCache(Cache cache);
 30   
 31    CacheJmxWrapperMBean getCacheService();
 32   
 33    void setCacheService(CacheJmxWrapperMBean cache_service);
 34    }