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

org.hibernate.graph.internal.parse.GraphLanguageParserBaseListener Maven / Gradle / Ivy

There is a newer version: 7.0.0.Beta1
Show newest version
// Generated from /home/sebersole/projects/hibernate/design/6-old-new/hibernate-orm/hibernate-core/src/main/antlr/org/hibernate/graph/internal/parse/GraphLanguageParser.g4 by ANTLR 4.7.1

/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.graph.internal.parse;


import org.antlr.v4.runtime.ParserRuleContext;
import org.antlr.v4.runtime.tree.ErrorNode;
import org.antlr.v4.runtime.tree.TerminalNode;

/**
 * This class provides an empty implementation of {@link GraphLanguageParserListener},
 * which can be extended to create a listener which only needs to handle a subset
 * of the available methods.
 */
public class GraphLanguageParserBaseListener implements GraphLanguageParserListener {
	/**
	 * {@inheritDoc}
	 *
	 * 

The default implementation does nothing.

*/ @Override public void enterGraph(GraphLanguageParser.GraphContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitGraph(GraphLanguageParser.GraphContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterAttributeList(GraphLanguageParser.AttributeListContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitAttributeList(GraphLanguageParser.AttributeListContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterAttributeNode(GraphLanguageParser.AttributeNodeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitAttributeNode(GraphLanguageParser.AttributeNodeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterAttributePath(GraphLanguageParser.AttributePathContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitAttributePath(GraphLanguageParser.AttributePathContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterAttributeQualifier(GraphLanguageParser.AttributeQualifierContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitAttributeQualifier(GraphLanguageParser.AttributeQualifierContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterSubGraph(GraphLanguageParser.SubGraphContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitSubGraph(GraphLanguageParser.SubGraphContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterSubType(GraphLanguageParser.SubTypeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitSubType(GraphLanguageParser.SubTypeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterEveryRule(ParserRuleContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitEveryRule(ParserRuleContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void visitTerminal(TerminalNode node) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void visitErrorNode(ErrorNode node) { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy