Clover coverage report - PMD - 3.9
Coverage timestamp: Tue Dec 19 2006 09:38:44 EST
file stats: LOC: 25   Methods: 3
NCLOC: 16   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
JspParser.java - 0% 0% 0%
coverage
 1    package net.sourceforge.pmd.parsers;
 2   
 3    import net.sourceforge.pmd.ast.ParseException;
 4    import net.sourceforge.pmd.jsp.ast.JspCharStream;
 5   
 6    import java.io.Reader;
 7    import java.util.HashMap;
 8    import java.util.Map;
 9   
 10    public class JspParser implements Parser {
 11   
 12  0 public Object parse(Reader source) throws ParseException {
 13  0 return new net.sourceforge.pmd.jsp.ast.JspParser(new JspCharStream(source)).CompilationUnit();
 14    }
 15   
 16  0 public Map getExcludeMap() {
 17  0 return new HashMap(); // FIXME
 18    }
 19   
 20  0 public void setExcludeMarker(String marker) {
 21    // FIXME
 22    }
 23   
 24   
 25    }