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

com.xlrit.gears.runner.scenario.ScenarioVisitor Maven / Gradle / Ivy

There is a newer version: 1.17.1
Show newest version
// Generated from java-escape by ANTLR 4.11.1
package com.xlrit.gears.runner.scenario;
import org.antlr.v4.runtime.tree.ParseTreeVisitor;

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link ScenarioParser}.
 *
 * @param  The return type of the visit operation. Use {@link Void} for
 * operations with no return type.
 */
public interface ScenarioVisitor extends ParseTreeVisitor {
	/**
	 * Visit a parse tree produced by {@link ScenarioParser#startStatements}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitStartStatements(ScenarioParser.StartStatementsContext ctx);
	/**
	 * Visit a parse tree produced by the {@code withUserStatement}
	 * labeled alternative in {@link ScenarioParser#statement}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitWithUserStatement(ScenarioParser.WithUserStatementContext ctx);
	/**
	 * Visit a parse tree produced by the {@code startProcessStatement}
	 * labeled alternative in {@link ScenarioParser#statement}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitStartProcessStatement(ScenarioParser.StartProcessStatementContext ctx);
	/**
	 * Visit a parse tree produced by the {@code processCompleteStatement}
	 * labeled alternative in {@link ScenarioParser#statement}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitProcessCompleteStatement(ScenarioParser.ProcessCompleteStatementContext ctx);
	/**
	 * Visit a parse tree produced by the {@code assertStatement}
	 * labeled alternative in {@link ScenarioParser#statement}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitAssertStatement(ScenarioParser.AssertStatementContext ctx);
	/**
	 * Visit a parse tree produced by the {@code claimTaskStatement}
	 * labeled alternative in {@link ScenarioParser#statement}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitClaimTaskStatement(ScenarioParser.ClaimTaskStatementContext ctx);
	/**
	 * Visit a parse tree produced by the {@code submitTaskStatement}
	 * labeled alternative in {@link ScenarioParser#statement}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitSubmitTaskStatement(ScenarioParser.SubmitTaskStatementContext ctx);
	/**
	 * Visit a parse tree produced by the {@code setDateTimeStatement}
	 * labeled alternative in {@link ScenarioParser#statement}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitSetDateTimeStatement(ScenarioParser.SetDateTimeStatementContext ctx);
	/**
	 * Visit a parse tree produced by {@link ScenarioParser#taskExpr}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitTaskExpr(ScenarioParser.TaskExprContext ctx);
	/**
	 * Visit a parse tree produced by the {@code objectExpression}
	 * labeled alternative in {@link ScenarioParser#expr}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitObjectExpression(ScenarioParser.ObjectExpressionContext ctx);
	/**
	 * Visit a parse tree produced by the {@code listExpression}
	 * labeled alternative in {@link ScenarioParser#expr}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitListExpression(ScenarioParser.ListExpressionContext ctx);
	/**
	 * Visit a parse tree produced by the {@code literalExpression}
	 * labeled alternative in {@link ScenarioParser#expr}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitLiteralExpression(ScenarioParser.LiteralExpressionContext ctx);
	/**
	 * Visit a parse tree produced by {@link ScenarioParser#objectExpr}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitObjectExpr(ScenarioParser.ObjectExprContext ctx);
	/**
	 * Visit a parse tree produced by {@link ScenarioParser#attributeExpr}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitAttributeExpr(ScenarioParser.AttributeExprContext ctx);
	/**
	 * Visit a parse tree produced by {@link ScenarioParser#listExpr}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitListExpr(ScenarioParser.ListExprContext ctx);
	/**
	 * Visit a parse tree produced by {@link ScenarioParser#optionalTrailingComma}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitOptionalTrailingComma(ScenarioParser.OptionalTrailingCommaContext ctx);
	/**
	 * Visit a parse tree produced by {@link ScenarioParser#literalExpr}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitLiteralExpr(ScenarioParser.LiteralExprContext ctx);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy