Class RegisterParserBaseListener
- java.lang.Object
-
- org.fulib.scenarios.parser.RegisterParserBaseListener
-
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeListener,RegisterParserListener
public class RegisterParserBaseListener extends java.lang.Object implements RegisterParserListener
This class provides an empty implementation ofRegisterParserListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description RegisterParserBaseListener()
-
Method Summary
-
-
-
Method Detail
-
enterRegister
public void enterRegister(RegisterParser.RegisterContext ctx)
Enter a parse tree produced byRegisterParser.register().The default implementation does nothing.
- Specified by:
enterRegisterin interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
exitRegister
public void exitRegister(RegisterParser.RegisterContext ctx)
Exit a parse tree produced byRegisterParser.register().The default implementation does nothing.
- Specified by:
exitRegisterin interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
enterClassDef
public void enterClassDef(RegisterParser.ClassDefContext ctx)
Enter a parse tree produced byRegisterParser.classDef().The default implementation does nothing.
- Specified by:
enterClassDefin interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
exitClassDef
public void exitClassDef(RegisterParser.ClassDefContext ctx)
Exit a parse tree produced byRegisterParser.classDef().The default implementation does nothing.
- Specified by:
exitClassDefin interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
enterExampleClause
public void enterExampleClause(RegisterParser.ExampleClauseContext ctx)
Enter a parse tree produced byRegisterParser.exampleClause().The default implementation does nothing.
- Specified by:
enterExampleClausein interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
exitExampleClause
public void exitExampleClause(RegisterParser.ExampleClauseContext ctx)
Exit a parse tree produced byRegisterParser.exampleClause().The default implementation does nothing.
- Specified by:
exitExampleClausein interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
enterExampleValue
public void enterExampleValue(RegisterParser.ExampleValueContext ctx)
Enter a parse tree produced byRegisterParser.exampleValue().The default implementation does nothing.
- Specified by:
enterExampleValuein interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
exitExampleValue
public void exitExampleValue(RegisterParser.ExampleValueContext ctx)
Exit a parse tree produced byRegisterParser.exampleValue().The default implementation does nothing.
- Specified by:
exitExampleValuein interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
enterAttrDef
public void enterAttrDef(RegisterParser.AttrDefContext ctx)
Enter a parse tree produced byRegisterParser.attrDef().The default implementation does nothing.
- Specified by:
enterAttrDefin interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
exitAttrDef
public void exitAttrDef(RegisterParser.AttrDefContext ctx)
Exit a parse tree produced byRegisterParser.attrDef().The default implementation does nothing.
- Specified by:
exitAttrDefin interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
enterRoleDef
public void enterRoleDef(RegisterParser.RoleDefContext ctx)
Enter a parse tree produced byRegisterParser.roleDef().The default implementation does nothing.
- Specified by:
enterRoleDefin interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
exitRoleDef
public void exitRoleDef(RegisterParser.RoleDefContext ctx)
Exit a parse tree produced byRegisterParser.roleDef().The default implementation does nothing.
- Specified by:
exitRoleDefin interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
enterCfClause
public void enterCfClause(RegisterParser.CfClauseContext ctx)
Enter a parse tree produced byRegisterParser.cfClause().The default implementation does nothing.
- Specified by:
enterCfClausein interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
exitCfClause
public void exitCfClause(RegisterParser.CfClauseContext ctx)
Exit a parse tree produced byRegisterParser.cfClause().The default implementation does nothing.
- Specified by:
exitCfClausein interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
enterCardinality
public void enterCardinality(RegisterParser.CardinalityContext ctx)
Enter a parse tree produced byRegisterParser.cardinality().The default implementation does nothing.
- Specified by:
enterCardinalityin interfaceRegisterParserListener- Parameters:
ctx- the parse tree
-
exitCardinality
public void exitCardinality(RegisterParser.CardinalityContext ctx)
Exit a parse tree produced byRegisterParser.cardinality().The default implementation does nothing.
- Specified by:
exitCardinalityin interfaceRegisterParserListener- 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
-
-