List of usage examples for org.antlr.v4.runtime.tree AbstractParseTreeVisitor subclass-usage
From source file com.gigaspaces.persistency.parser.SQL2MongoBaseVisitor.java
public class SQL2MongoBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements SQL2MongoVisitor<T> { private static final String RLIKE = "rlike()"; private static final String LIKE = "like()";
From source file com.github.minlywang.dsl.calc.CalcBaseVisitor.java
/**
* This class provides an empty implementation of {@link CalcVisitor}, which can
* be extended to create a visitor which only needs to handle a subset of the
* available methods.
*
* @param <T> The return type of the visit operation. Use {@link Void} for
From source file com.liferay.dynamic.data.mapping.expression.internal.parser.DDMExpressionBaseVisitor.java
/**
* This class provides an empty implementation of {@link DDMExpressionVisitor},
* which can be extended to create a visitor which only needs to handle a subset
* of the available methods.
*
* @author Brian Wing Shun Chan
From source file com.netflix.java.refactor.aspectj.AnnotationSignatureParserBaseVisitor.java
/**
* This class provides an empty implementation of {@link AnnotationSignatureParserVisitor},
* which can be extended to create a visitor which only needs to handle a subset
* of the available methods.
*
* @param <T> The return type of the visit operation. Use {@link Void} for
From source file com.netflix.java.refactor.aspectj.JavaParserBaseVisitor.java
/**
* This class provides an empty implementation of {@link JavaParserVisitor},
* which can be extended to create a visitor which only needs to handle a subset
* of the available methods.
*
* @param <T> The return type of the visit operation. Use {@link Void} for
From source file com.netflix.java.refactor.aspectj.RefactorMethodSignatureParserBaseVisitor.java
/**
* This class provides an empty implementation of {@link RefactorMethodSignatureParserVisitor},
* which can be extended to create a visitor which only needs to handle a subset
* of the available methods.
*
* @param <T> The return type of the visit operation. Use {@link Void} for
From source file com.sm.query.parser.ObjectQueryBaseVisitor.java
/**
* This class provides an empty implementation of {@link ObjectQueryVisitor},
* which can be extended to create a visitor which only needs to handle a subset
* of the available methods.
*
* @param <T> The return type of the visit operation. Use {@link Void} for
From source file com.sm.query.parser.PredicateBaseVisitor.java
/**
* This class provides an empty implementation of {@link PredicateVisitor},
* which can be extended to create a visitor which only needs to handle a subset
* of the available methods.
*
* @param <T> The return type of the visit operation. Use {@link Void} for
From source file com.sm.query.parser.QueryBaseVisitor.java
/**
* This class provides an empty implementation of {@link QueryVisitor},
* which can be extended to create a visitor which only needs to handle a subset
* of the available methods.
*
* @param <T> The return type of the visit operation. Use {@link Void} for
From source file com.tehforce.sofa.parser.Evaluator.java
/**
* Evaluator is the evaluator of the AST created by ANTLR4.
* It evaluates the entire tree on request, and takes the current status
* of the simulation into account every single time.
*
* Returns a set of tokens on request.