Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 21   Methods: 0
NCLOC: 5   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
SortedEvictionQueue.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.eviction;
 8   
 9    /**
 10    * Sorted Eviction Queue implementation.
 11    *
 12    * @author Daniel Huang (dhuang@jboss.org)
 13    * @version $Revision: 1.1 $
 14    */
 15    public interface SortedEvictionQueue extends EvictionQueue
 16    {
 17    /**
 18    * Provide contract to resort a sorted queue.
 19    */
 20    public void resortEvictionQueue();
 21    }