ght.yangtools.yang-parser-impl.1.0.2-Boron-SR2.source-code.YangStatementParserBaseVisitor 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.AbstractParseTreeVisitor;
/**
* This class provides an empty implementation of {@link YangStatementParserVisitor},
* 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 YangStatementParserBaseVisitor extends AbstractParseTreeVisitor implements YangStatementParserVisitor {
/**
* {@inheritDoc}
*
* The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitStatement(YangStatementParser.StatementContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitKeyword(YangStatementParser.KeywordContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitArgument(YangStatementParser.ArgumentContext ctx) { return visitChildren(ctx); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy