/* * generated by Xtext */ package org.eclipse.etrice.core.parser.antlr; import org.antlr.runtime.CharStream; import org.antlr.runtime.TokenSource; import org.eclipse.xtext.parser.IParseResult; import org.eclipse.xtext.parser.ParseException; import org.eclipse.xtext.parser.antlr.XtextTokenStream; import com.google.inject.Inject; import org.eclipse.etrice.core.services.RoomGrammarAccess; public class RoomParser extends org.eclipse.xtext.parser.antlr.AbstractAntlrParser { @Inject private RoomGrammarAccess grammarAccess; @Override protected IParseResult parse(String ruleName, CharStream in) { TokenSource tokenSource = createLexer(in); XtextTokenStream tokenStream = createTokenStream(tokenSource); tokenStream.setInitialHiddenTokens("RULE_WS", "RULE_ML_COMMENT", "RULE_SL_COMMENT"); org.eclipse.etrice.core.parser.antlr.internal.InternalRoomParser parser = createParser(tokenStream); parser.setTokenTypeMap(getTokenDefProvider().getTokenDefMap()); parser.setSyntaxErrorProvider(getSyntaxErrorProvider()); parser.setUnorderedGroupHelper(getUnorderedGroupHelper().get()); try { if(ruleName != null) return parser.parse(ruleName); return parser.parse(); } catch (Exception re) { throw new ParseException(re.getMessage(),re); } } protected org.eclipse.etrice.core.parser.antlr.internal.InternalRoomParser createParser(XtextTokenStream stream) { return new org.eclipse.etrice.core.parser.antlr.internal.InternalRoomParser(stream, getElementFactory(), getGrammarAccess()); } @Override protected String getDefaultRuleName() { return "RoomModel"; } public RoomGrammarAccess getGrammarAccess() { return this.grammarAccess; } public void setGrammarAccess(RoomGrammarAccess grammarAccess) { this.grammarAccess = grammarAccess; } }