Example usage for org.antlr.v4.runtime.tree ParseTreeVisitor interface-usage

List of usage examples for org.antlr.v4.runtime.tree ParseTreeVisitor interface-usage

Introduction

In this page you can find the example usage for org.antlr.v4.runtime.tree ParseTreeVisitor interface-usage.

Usage

From source file com.gigaspaces.persistency.parser.SQL2MongoVisitor.java

public interface SQL2MongoVisitor<T> extends ParseTreeVisitor<T> {
    T visitNot(SQL2MongoParser.NotContext ctx);

    T visitExpression(SQL2MongoParser.ExpressionContext ctx);

    T visitAtom(SQL2MongoParser.AtomContext ctx);

From source file com.github.minlywang.dsl.calc.CalcVisitor.java

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link CalcParser}.
 * 
 * @param <T> The return type of the visit operation. Use {@link Void} for
 *            operations with no return type.

From source file com.liferay.dynamic.data.mapping.expression.internal.parser.DDMExpressionVisitor.java

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link DDMExpressionParser}.
 *
 * @author Brian Wing Shun Chan
 */

From source file com.netflix.java.refactor.aspectj.AnnotationSignatureParserVisitor.java

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link AnnotationSignatureParser}.
 *
 * @param <T> The return type of the visit operation. Use {@link Void} for
 * operations with no return type.

From source file com.netflix.java.refactor.aspectj.JavaParserVisitor.java

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link JavaParser}.
 *
 * @param <T> The return type of the visit operation. Use {@link Void} for
 * operations with no return type.

From source file com.netflix.java.refactor.aspectj.RefactorMethodSignatureParserVisitor.java

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link RefactorMethodSignatureParser}.
 *
 * @param <T> The return type of the visit operation. Use {@link Void} for
 * operations with no return type.

From source file com.sm.query.parser.ObjectQueryVisitor.java

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link ObjectQueryParser}.
 *
 * @param <T> The return type of the visit operation. Use {@link Void} for
 * operations with no return type.

From source file com.sm.query.parser.PredicateVisitor.java

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link PredicateParser}.
 *
 * @param <T> The return type of the visit operation. Use {@link Void} for
 * operations with no return type.

From source file com.sm.query.parser.QueryVisitor.java

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link QueryParser}.
 *
 * @param <T> The return type of the visit operation. Use {@link Void} for
 * operations with no return type.

From source file dk.dma.internal.ais.generated.parser.expressionfilter.ExpressionFilterVisitor.java

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link ExpressionFilterParser}.
 *
 * @param <T> The return type of the visit operation. Use {@link Void} for
 * operations with no return type.