# Generated from grammar/doc/doc.g4 by ANTLR 4.9.3
from antlr4 import *
if __name__ is not None and "." in __name__:
    from .docParser import docParser
else:
    from docParser import docParser

from asd import doc


# This class defines a complete listener for a parse tree produced by docParser.
class docListener(ParseTreeListener):

    # Enter a parse tree produced by docParser#document.
    def enterDocument(self, ctx:docParser.DocumentContext):
        pass

    # Exit a parse tree produced by docParser#document.
    def exitDocument(self, ctx:docParser.DocumentContext):
        pass


    # Enter a parse tree produced by docParser#sentence.
    def enterSentence(self, ctx:docParser.SentenceContext):
        pass

    # Exit a parse tree produced by docParser#sentence.
    def exitSentence(self, ctx:docParser.SentenceContext):
        pass


    # Enter a parse tree produced by docParser#orgPart.
    def enterOrgPart(self, ctx:docParser.OrgPartContext):
        pass

    # Exit a parse tree produced by docParser#orgPart.
    def exitOrgPart(self, ctx:docParser.OrgPartContext):
        pass


    # Enter a parse tree produced by docParser#unlPart.
    def enterUnlPart(self, ctx:docParser.UnlPartContext):
        pass

    # Exit a parse tree produced by docParser#unlPart.
    def exitUnlPart(self, ctx:docParser.UnlPartContext):
        pass



del docParser