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 public JspCharStream(InputStream dstream, int startline, int startcolumn, int buffersize) { 11 super(dstream, startline, startcolumn, buffersize); 12 } 14 15 public JspCharStream(InputStream dstream, int startline, int startcolumn) { 16 super(dstream, startline, startcolumn); 17 } 19 20 public JspCharStream(InputStream dstream) { 21 super(dstream); 22 } 24 25 public JspCharStream(Reader dstream, int startline, int startcolumn, int buffersize) { 26 super(dstream, startline, startcolumn, buffersize); 27 } 29 30 public JspCharStream(Reader dstream, int startline, int startcolumn) { 31 super(dstream, startline, startcolumn); 32 } 34 35 public JspCharStream(Reader dstream) { 36 super(dstream); 37 } 39 40 } 41 | Popular Tags |