ght.yangtools.yang-parser-impl.1.0.2-Boron-SR2.source-code.YangStatementParserVisitor Maven / Gradle / Ivy
// Generated from YangStatementParser.g4 by ANTLR 4.5.1
package org.opendaylight.yangtools.antlrv4.code.gen;
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
/**
* This interface defines a complete generic visitor for a parse tree produced
* by {@link YangStatementParser}.
*
* @param The return type of the visit operation. Use {@link Void} for
* operations with no return type.
*/
public interface YangStatementParserVisitor extends ParseTreeVisitor {
/**
* Visit a parse tree produced by {@link YangStatementParser#statement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitStatement(YangStatementParser.StatementContext ctx);
/**
* Visit a parse tree produced by {@link YangStatementParser#keyword}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitKeyword(YangStatementParser.KeywordContext ctx);
/**
* Visit a parse tree produced by {@link YangStatementParser#argument}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitArgument(YangStatementParser.ArgumentContext ctx);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy