/* * Copyright (c) 2012 Sam Harwell, Tunnel Vision Laboratories LLC * All rights reserved. * * The source code of this document is proprietary work, and is not licensed for * distribution. For information about licensing, contact Sam Harwell at: * sam@tunnelvisionlabs.com */ package org.antlr.works.editor.grammar.codemodel.impl; import org.antlr.v4.runtime.ParserRuleContext; import org.antlr.v4.runtime.tree.TerminalNode; import org.antlr.works.editor.grammar.codemodel.ModeModel; import org.antlr.works.editor.grammar.codemodel.RuleKind; /** * * @author Sam Harwell */ public class ParserRuleModelImpl extends RuleModelImpl { public ParserRuleModelImpl(String name, FileModelImpl file, TerminalNode seek, ParserRuleContext span) { super(name, file, seek, span); } @Override public RuleKind getRuleKind() { return RuleKind.PARSER; } @Override public ModeModel getMode() { return null; } }