01: package org.acm.seguin.pmd;
02:
03: import net.sourceforge.jrefactory.parser.JavaParser;
04:
05: import java.io.InputStream;
06: import java.io.Reader;
07:
08: public class JLS1_1 implements JLSVersion {
09:
10: public JavaParser createParser(InputStream in) {
11: throw new RuntimeException("Not yet implemented");
12: }
13:
14: public JavaParser createParser(Reader in) {
15: throw new RuntimeException("Not yet implemented");
16: }
17: }
|