blob: b40bcfcef5c81dbf3a29775e2dbf37ee16eda2e4 [file] [log] [blame]
package org.eclipse.emf.emfatic.core.lang.gen.ast;
/**
*
* @generated by Gymnast from Emfatic.ast on 06.02.2007 17:57:34
*/
public abstract class TypeArg extends EmfaticASTNode {
/**
* Construct a new TypeArg.
*/
public TypeArg() {
super();
}
/**
* 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);
}
}