import java.io.BufferedReader;


public class ParserInputSource {
	private BufferedReader reader;
	private int input;
	private int rowIndex;
	private int columnIndex;
	private String name;
	public String getName() {
		return name;
	}
	public int getInput() {
		return input;
	}
	public BufferedReader getReader() {
		return reader;
	}
	public int getColumnIndex() {
		return columnIndex;
	}
	public int getRowIndex() {
		return rowIndex;
	}
	public ParserInputSource(BufferedReader reader, String name, int input, int rowIndex, int columnIndex) {
		this.reader = reader;
		this.name = name;
		this.input = input;
		this.rowIndex = rowIndex;
		this.columnIndex = columnIndex;
	}
}
