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

org.ow2.mind.adl.jtb.syntaxtree.Node 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;

/**
 * The interface which all syntax tree classes must implement.
 */
public interface Node extends java.io.Serializable {
   public void accept(org.ow2.mind.adl.jtb.visitor.Visitor v);
   public  R accept(org.ow2.mind.adl.jtb.visitor.GJVisitor v, A argu);
   public  R accept(org.ow2.mind.adl.jtb.visitor.GJNoArguVisitor v);
   public  void accept(org.ow2.mind.adl.jtb.visitor.GJVoidVisitor v, A argu);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy