Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
file stats: LOC: 40   Methods: 6
NCLOC: 24   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
JspCharStream.java - 16.7% 16.7% 16.7%
coverage coverage
 1    package net.sourceforge.pmd.jsp.ast;
 2   
 3    import net.sourceforge.pmd.ast.JavaCharStream;
 4   
 5    import java.io.InputStream;
 6    import java.io.Reader;
 7   
 8    public class JspCharStream extends JavaCharStream implements CharStream {
 9   
 10  0 public JspCharStream(InputStream dstream, int startline, int startcolumn, int buffersize) {
 11  0 super(dstream, startline, startcolumn, buffersize);
 12    // TODO Auto-generated constructor stub
 13    }
 14   
 15  0 public JspCharStream(InputStream dstream, int startline, int startcolumn) {
 16  0 super(dstream, startline, startcolumn);
 17    // TODO Auto-generated constructor stub
 18    }
 19   
 20  0 public JspCharStream(InputStream dstream) {
 21  0 super(dstream);
 22    // TODO Auto-generated constructor stub
 23    }
 24   
 25  0 public JspCharStream(Reader dstream, int startline, int startcolumn, int buffersize) {
 26  0 super(dstream, startline, startcolumn, buffersize);
 27    // TODO Auto-generated constructor stub
 28    }
 29   
 30  0 public JspCharStream(Reader dstream, int startline, int startcolumn) {
 31  0 super(dstream, startline, startcolumn);
 32    // TODO Auto-generated constructor stub
 33    }
 34   
 35  39 public JspCharStream(Reader dstream) {
 36  39 super(dstream);
 37    // TODO Auto-generated constructor stub
 38    }
 39   
 40    }