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

edu.uvm.ccts.jmethodsig.antlr.JMethodSigVisitor Maven / Gradle / Ivy

Go to download

ANTLR grammar and Java logic used to traverse the generated abstract syntax trees related to Arden-syntax Medical Logic Modules (MLMs)

There is a newer version: 1.2
Show newest version
// Generated from JMethodSig.g4 by ANTLR 4.1
package edu.uvm.ccts.jmethodsig.antlr;
import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.ParseTreeVisitor;

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link JMethodSigParser}.
 *
 * @param  The return type of the visit operation. Use {@link Void} for
 * operations with no return type.
 */
public interface JMethodSigVisitor extends ParseTreeVisitor {
	/**
	 * Visit a parse tree produced by {@link JMethodSigParser#complexType}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitComplexType(@NotNull JMethodSigParser.ComplexTypeContext ctx);

	/**
	 * Visit a parse tree produced by {@link JMethodSigParser#init}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitInit(@NotNull JMethodSigParser.InitContext ctx);

	/**
	 * Visit a parse tree produced by {@link JMethodSigParser#className}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitClassName(@NotNull JMethodSigParser.ClassNameContext ctx);

	/**
	 * Visit a parse tree produced by {@link JMethodSigParser#parameters}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitParameters(@NotNull JMethodSigParser.ParametersContext ctx);

	/**
	 * Visit a parse tree produced by {@link JMethodSigParser#type}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitType(@NotNull JMethodSigParser.TypeContext ctx);

	/**
	 * Visit a parse tree produced by {@link JMethodSigParser#methodName}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitMethodName(@NotNull JMethodSigParser.MethodNameContext ctx);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy