All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ow2.mind.adl.jtb.syntaxtree.CompositeAnonymousExtension Maven / Gradle / Ivy

There is a newer version: 2.0
Show newest version
//
// Generated by JTB 1.3.2
//

package org.ow2.mind.adl.jtb.syntaxtree;

/**
 * Grammar production:
 * 
 * f0 -> Annotations()
 * f1 -> <LBRACE>
 * f2 -> ( CompositeDefinitionElement() )*
 * f3 -> <RBRACE>
 * 
*/ public class CompositeAnonymousExtension implements Node { public Annotations f0; public NodeToken f1; public NodeListOptional f2; public NodeToken f3; public CompositeAnonymousExtension(Annotations n0, NodeToken n1, NodeListOptional n2, NodeToken n3) { f0 = n0; f1 = n1; f2 = n2; f3 = n3; } public CompositeAnonymousExtension(Annotations n0, NodeListOptional n1) { f0 = n0; f1 = new NodeToken("{"); f2 = n1; f3 = new NodeToken("}"); } public void accept(org.ow2.mind.adl.jtb.visitor.Visitor v) { v.visit(this); } public R accept(org.ow2.mind.adl.jtb.visitor.GJVisitor v, A argu) { return v.visit(this,argu); } public R accept(org.ow2.mind.adl.jtb.visitor.GJNoArguVisitor v) { return v.visit(this); } public void accept(org.ow2.mind.adl.jtb.visitor.GJVoidVisitor v, A argu) { v.visit(this,argu); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy