/******************************************************************************* * Copyright (c) 2007, 2008 Edgar Espina. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * *******************************************************************************/ package org.deved.antlride.internal.ui.wizards; import org.deved.antlride.core.model.GrammarType; public class AntlrParserGrammarPage extends AntlrDefaultGrammarPage { public AntlrParserGrammarPage() { } @Override protected String getGrammarTypeName() { return "parser "; } @Override protected String getGrammarType() { return GrammarType.PARSER.name(); } @Override protected boolean hasDependentSection() { return true; } @Override protected boolean hasOutputSection() { return true; } @Override protected boolean hasTokenVocabSection() { return true; } @Override protected String getPageDescription() { return "Created a new parser grammar"; } @Override protected String getPageTitle() { return "Parser Grammar"; } }