01: package net.sourceforge.pmd.jsp.ast;
02:
03: import net.sourceforge.pmd.ast.JavaCharStream;
04:
05: import java.io.InputStream;
06: import java.io.Reader;
07:
08: public class JspCharStream extends JavaCharStream implements CharStream {
09:
10: public JspCharStream(InputStream dstream, int startline,
11: int startcolumn, int buffersize) {
12: super (dstream, startline, startcolumn, buffersize);
13: // TODO Auto-generated constructor stub
14: }
15:
16: public JspCharStream(InputStream dstream, int startline,
17: int startcolumn) {
18: super (dstream, startline, startcolumn);
19: // TODO Auto-generated constructor stub
20: }
21:
22: public JspCharStream(InputStream dstream) {
23: super (dstream);
24: // TODO Auto-generated constructor stub
25: }
26:
27: public JspCharStream(Reader dstream, int startline,
28: int startcolumn, int buffersize) {
29: super (dstream, startline, startcolumn, buffersize);
30: // TODO Auto-generated constructor stub
31: }
32:
33: public JspCharStream(Reader dstream, int startline, int startcolumn) {
34: super (dstream, startline, startcolumn);
35: // TODO Auto-generated constructor stub
36: }
37:
38: public JspCharStream(Reader dstream) {
39: super (dstream);
40: // TODO Auto-generated constructor stub
41: }
42:
43: }
|