aboutsummaryrefslogtreecommitdiff
path: root/src/stubs/com/sun/tools/javac/parser/UnicodeReader.java
blob: 1c09eb6beb3ead5e7614b131adbb0bd7bef3364a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.sun.tools.javac.parser;

import java.nio.CharBuffer;

public class UnicodeReader {
	protected int bp;
	
	protected UnicodeReader(ScannerFactory sf, char[] input, int inputLength) {
	}
	
	protected UnicodeReader(ScannerFactory sf, CharBuffer buffer) {
		
	}
	
	public char[] getRawCharacters(int beginIndex, int endIndex) {
		return null;
	}
}