Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:43:17 CET
file stats: LOC: 19   Methods: 2
NCLOC: 13   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
DocumentationContext.java - 0% 0% 0%
coverage
 1    package com.agical.rdoc.core;
 2   
 3    import java.io.Serializable;
 4   
 5    public interface DocumentationContext extends Serializable {
 6   
 7    DocumentationContext NULL = new DocumentationContext() {
 8  0 public void put(String name, Serializable serializable) {
 9    }
 10  0 public Serializable get(String string) {
 11  0 return null;
 12    }
 13    };
 14   
 15    void put(String name, Serializable serializable);
 16   
 17    Serializable get(String string);
 18   
 19    }