public class SubsParserWrapper extends ParserWrapper<SubsParser.start_return>
{
protected SubsParser.start_return internalParse(File source, CharStream data)
throws IOException
{
super.lexer = new SubsLexer(data);
CommonTokenStream tokens = new CommonTokenStream(lexer);
SubsParser thisParser = new SubsParser(tokens);
parser = thisParser;