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 |
| |
13 |
| } |
14 |
| |
15 |
0
| public JspCharStream(InputStream dstream, int startline, int startcolumn) {
|
16 |
0
| super(dstream, startline, startcolumn);
|
17 |
| |
18 |
| } |
19 |
| |
20 |
0
| public JspCharStream(InputStream dstream) {
|
21 |
0
| super(dstream);
|
22 |
| |
23 |
| } |
24 |
| |
25 |
0
| public JspCharStream(Reader dstream, int startline, int startcolumn, int buffersize) {
|
26 |
0
| super(dstream, startline, startcolumn, buffersize);
|
27 |
| |
28 |
| } |
29 |
| |
30 |
0
| public JspCharStream(Reader dstream, int startline, int startcolumn) {
|
31 |
0
| super(dstream, startline, startcolumn);
|
32 |
| |
33 |
| } |
34 |
| |
35 |
39
| public JspCharStream(Reader dstream) {
|
36 |
39
| super(dstream);
|
37 |
| |
38 |
| } |
39 |
| |
40 |
| } |