Class GradleGroovyScriptBaseListener
- java.lang.Object
-
- com.autonomousapps.internal.grammar.GradleGroovyScriptBaseListener
-
- All Implemented Interfaces:
GradleGroovyScriptListener,org.antlr.v4.runtime.tree.ParseTreeListener
public class GradleGroovyScriptBaseListener extends java.lang.Object implements GradleGroovyScriptListener
This class provides an empty implementation ofGradleGroovyScriptListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description GradleGroovyScriptBaseListener()
-
Method Summary
-
-
-
Method Detail
-
enterScript
public void enterScript(GradleGroovyScript.ScriptContext ctx)
Enter a parse tree produced byGradleGroovyScript.script().The default implementation does nothing.
- Specified by:
enterScriptin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitScript
public void exitScript(GradleGroovyScript.ScriptContext ctx)
Exit a parse tree produced byGradleGroovyScript.script().The default implementation does nothing.
- Specified by:
exitScriptin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterDependencies
public void enterDependencies(GradleGroovyScript.DependenciesContext ctx)
Enter a parse tree produced byGradleGroovyScript.dependencies().The default implementation does nothing.
- Specified by:
enterDependenciesin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitDependencies
public void exitDependencies(GradleGroovyScript.DependenciesContext ctx)
Exit a parse tree produced byGradleGroovyScript.dependencies().The default implementation does nothing.
- Specified by:
exitDependenciesin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterBuildscript
public void enterBuildscript(GradleGroovyScript.BuildscriptContext ctx)
Enter a parse tree produced byGradleGroovyScript.buildscript().The default implementation does nothing.
- Specified by:
enterBuildscriptin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitBuildscript
public void exitBuildscript(GradleGroovyScript.BuildscriptContext ctx)
Exit a parse tree produced byGradleGroovyScript.buildscript().The default implementation does nothing.
- Specified by:
exitBuildscriptin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterBlock
public void enterBlock(GradleGroovyScript.BlockContext ctx)
Enter a parse tree produced byGradleGroovyScript.block().The default implementation does nothing.
- Specified by:
enterBlockin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitBlock
public void exitBlock(GradleGroovyScript.BlockContext ctx)
Exit a parse tree produced byGradleGroovyScript.block().The default implementation does nothing.
- Specified by:
exitBlockin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterFileDeclaration
public void enterFileDeclaration(GradleGroovyScript.FileDeclarationContext ctx)
Enter a parse tree produced byGradleGroovyScript.fileDeclaration().The default implementation does nothing.
- Specified by:
enterFileDeclarationin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitFileDeclaration
public void exitFileDeclaration(GradleGroovyScript.FileDeclarationContext ctx)
Exit a parse tree produced byGradleGroovyScript.fileDeclaration().The default implementation does nothing.
- Specified by:
exitFileDeclarationin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterExternalDeclaration
public void enterExternalDeclaration(GradleGroovyScript.ExternalDeclarationContext ctx)
Enter a parse tree produced byGradleGroovyScript.externalDeclaration().The default implementation does nothing.
- Specified by:
enterExternalDeclarationin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitExternalDeclaration
public void exitExternalDeclaration(GradleGroovyScript.ExternalDeclarationContext ctx)
Exit a parse tree produced byGradleGroovyScript.externalDeclaration().The default implementation does nothing.
- Specified by:
exitExternalDeclarationin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterLocalDeclaration
public void enterLocalDeclaration(GradleGroovyScript.LocalDeclarationContext ctx)
Enter a parse tree produced byGradleGroovyScript.localDeclaration().The default implementation does nothing.
- Specified by:
enterLocalDeclarationin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitLocalDeclaration
public void exitLocalDeclaration(GradleGroovyScript.LocalDeclarationContext ctx)
Exit a parse tree produced byGradleGroovyScript.localDeclaration().The default implementation does nothing.
- Specified by:
exitLocalDeclarationin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterConfiguration
public void enterConfiguration(GradleGroovyScript.ConfigurationContext ctx)
Enter a parse tree produced byGradleGroovyScript.configuration().The default implementation does nothing.
- Specified by:
enterConfigurationin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitConfiguration
public void exitConfiguration(GradleGroovyScript.ConfigurationContext ctx)
Exit a parse tree produced byGradleGroovyScript.configuration().The default implementation does nothing.
- Specified by:
exitConfigurationin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterDependency
public void enterDependency(GradleGroovyScript.DependencyContext ctx)
Enter a parse tree produced byGradleGroovyScript.dependency().The default implementation does nothing.
- Specified by:
enterDependencyin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitDependency
public void exitDependency(GradleGroovyScript.DependencyContext ctx)
Exit a parse tree produced byGradleGroovyScript.dependency().The default implementation does nothing.
- Specified by:
exitDependencyin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterClosure
public void enterClosure(GradleGroovyScript.ClosureContext ctx)
Enter a parse tree produced byGradleGroovyScript.closure().The default implementation does nothing.
- Specified by:
enterClosurein interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitClosure
public void exitClosure(GradleGroovyScript.ClosureContext ctx)
Exit a parse tree produced byGradleGroovyScript.closure().The default implementation does nothing.
- Specified by:
exitClosurein interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterQuote
public void enterQuote(GradleGroovyScript.QuoteContext ctx)
Enter a parse tree produced byGradleGroovyScript.quote().The default implementation does nothing.
- Specified by:
enterQuotein interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitQuote
public void exitQuote(GradleGroovyScript.QuoteContext ctx)
Exit a parse tree produced byGradleGroovyScript.quote().The default implementation does nothing.
- Specified by:
exitQuotein interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterText
public void enterText(GradleGroovyScript.TextContext ctx)
Enter a parse tree produced byGradleGroovyScript.text().The default implementation does nothing.
- Specified by:
enterTextin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitText
public void exitText(GradleGroovyScript.TextContext ctx)
Exit a parse tree produced byGradleGroovyScript.text().The default implementation does nothing.
- Specified by:
exitTextin interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterSea
public void enterSea(GradleGroovyScript.SeaContext ctx)
Enter a parse tree produced byGradleGroovyScript.sea().The default implementation does nothing.
- Specified by:
enterSeain interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
exitSea
public void exitSea(GradleGroovyScript.SeaContext ctx)
Exit a parse tree produced byGradleGroovyScript.sea().The default implementation does nothing.
- Specified by:
exitSeain interfaceGradleGroovyScriptListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-