| 1 | |
package org.webslinger.rules; |
| 2 | |
|
| 3 | |
import java.io.InputStream; |
| 4 | |
import java.io.Reader; |
| 5 | |
import java.io.UnsupportedEncodingException; |
| 6 | |
|
| 7 | |
import org.webslinger.javacc.GenericSimpleCharStream; |
| 8 | |
|
| 9 | |
public class SimpleCharStream extends GenericSimpleCharStream { |
| 10 | |
public SimpleCharStream(InputStream stream, int line, int column, int buffersize) { |
| 11 | 0 | super(stream, line, column, buffersize); |
| 12 | 0 | } |
| 13 | |
|
| 14 | |
public SimpleCharStream(InputStream stream, String encoding, int line, int column) throws UnsupportedEncodingException { |
| 15 | 0 | super(stream, encoding, line, column); |
| 16 | 0 | } |
| 17 | |
|
| 18 | |
public SimpleCharStream(Reader reader, int line, int column, int buffersize) { |
| 19 | 0 | super(reader, line, column, buffersize); |
| 20 | 0 | } |
| 21 | |
|
| 22 | |
public SimpleCharStream(Reader reader, int line, int column) { |
| 23 | 22 | super(reader, line, column); |
| 24 | 22 | } |
| 25 | |
} |