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

edu.uvm.ccts.arden.mlm.antlr.MLMBaseVisitor 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 MLM.g4 by ANTLR 4.1
package edu.uvm.ccts.arden.mlm.antlr;
import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;

/**
 * This class provides an empty implementation of {@link MLMVisitor},
 * which can be extended to create a visitor which only needs to handle a subset
 * of the available methods.
 *
 * @param  The return type of the visit operation. Use {@link Void} for
 * operations with no return type.
 */
public class MLMBaseVisitor extends AbstractParseTreeVisitor implements MLMVisitor {
	/**
	 * {@inheritDoc}
	 * 

* The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitCategory(@NotNull MLMParser.CategoryContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} *

* The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitInit(@NotNull MLMParser.InitContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} *

* The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}. */ @Override public T visitSlot(@NotNull MLMParser.SlotContext ctx) { return visitChildren(ctx); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy