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

g-central.yangkit.yangkit-model-impl.1.4.4.source-code.IfFeatureExpressionBaseVisitor Maven / Gradle / Ivy

There is a newer version: 1.4.5
Show newest version
// Generated from IfFeatureExpression.g4 by ANTLR 4.9.3

package org.yangcentral.yangkit.antlr;

import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;

/**
 * This class provides an empty implementation of {@link IfFeatureExpressionVisitor},
 * 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 IfFeatureExpressionBaseVisitor extends AbstractParseTreeVisitor implements IfFeatureExpressionVisitor {
	/**
	 * {@inheritDoc}
	 *
	 * 

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitIf_feature_expr(IfFeatureExpressionParser.If_feature_exprContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitIf_feature_term(IfFeatureExpressionParser.If_feature_termContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitIf_feature_factor(IfFeatureExpressionParser.If_feature_factorContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitIdentifier_ref_arg(IfFeatureExpressionParser.Identifier_ref_argContext ctx) { return visitChildren(ctx); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy