Clover coverage report -
Coverage timestamp: So Nov 6 2005 14:19:51 CET
file stats: LOC: 26   Methods: 1
NCLOC: 6   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
CachewideEventType.java - - 0% 0%
coverage
 1    /*
 2    * Copyright (c) 2002-2003 by OpenSymphony
 3    * All rights reserved.
 4    */
 5    package com.opensymphony.oscache.base.events;
 6   
 7   
 8    /**
 9    * This is an enumeration holding all the events that can
 10    * occur at the cache-wide level.
 11    *
 12    * @author <a href="&#109;a&#105;&#108;&#116;&#111;:chris&#64;swebtec.&#99;&#111;&#109;">Chris Miller</a>
 13    */
 14    public class CachewideEventType {
 15    /**
 16    * Get an event type for a cache flush event.
 17    */
 18    public static CachewideEventType CACHE_FLUSHED = new CachewideEventType();
 19   
 20    /**
 21    * Private constructor to ensure that no object of this type are
 22    * created externally.
 23    */
 24  0 private CachewideEventType() {
 25    }
 26    }