blob: 2705fa2c9a908bd68554ea3820ec54c9f2f309aa [file] [log] [blame]
package org.eclipse.emf.emfatic.core.lang.gen.ast;
import org.eclipse.gymnast.runtime.core.ast.ASTNode;
import org.eclipse.gymnast.runtime.core.ast.TokenInfo;
/**
*
* @generated by Gymnast from Emfatic.ast on 06.02.2007 17:57:34
*/
public class AbstractModifier extends EmfaticASTNode {
public static final String KW_ABSTRACT = "abstract";
private EmfaticTokenNode _abstract_KW;
public EmfaticTokenNode getAbstract_KW() {
return _abstract_KW;
}
/**
* @return the number of children of this ASTNode
*/
public int getChildCount() {
int count = 0;
if (_abstract_KW != null) count++;
return count;
}
/**
* @param index the index of a child ASTNode to get
* @return the child ASTNode at the given index
* @throws IndexOutOfBoundsException when the index is out of bounds
*/
public ASTNode getChild(int index) {
int count = -1;
if ((_abstract_KW != null) && (++count == index)) return _abstract_KW;
throw new IndexOutOfBoundsException();
}
/**
* Construct a new AbstractModifier.
*/
public AbstractModifier(
TokenInfo abstract_KW
) {
super();
if (abstract_KW != null) {
_abstract_KW = new EmfaticTokenNode(abstract_KW);
if (_abstract_KW._parent != null) throw new RuntimeException();
_abstract_KW._parent = this;
}
}
/**
* This method overrides the superclass <code>acceptImpl</code> providing
* the same implementation. Here <code>this</code> refers to this specific node
* class, so the <code>beginVisit</code> and <code>endVisit</code> methods
* specific to this type in the visitor will be invoked.
*/
public void acceptImpl(EmfaticASTNodeVisitor visitor) {
boolean visitChildren = visitor.beginVisit(this);
if (visitChildren) visitChildren(visitor);
visitor.endVisit(this);
}
}