Interface ParserListener

All Known Implementing Classes:
JDepend

public interface ParserListener
The ParserListener interface defines a listener notified upon the completion of parsing events.

Implementers of this interface register for notification using the JDepend.addParseListener() method.

Author:
Mike Clark, Clarkware Consulting, Inc.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called whenever a Java class file is parsed into the specified JavaClass instance.
  • Method Details

    • onParsedJavaClass

      void onParsedJavaClass(JavaClass parsedClass)
      Called whenever a Java class file is parsed into the specified JavaClass instance.
      Parameters:
      parsedClass - Parsed Java class.