接口 CommentHandler

所有已知实现类:
Parser

public interface CommentHandler
JavaDoc is not part of the Java Language Specification, it should be treated as a special type of comment. This means it can appear almost everywhere, although there are only a few places where JavaDoc has effect. When the parser has finished a comment, it will trigger the commentHandler by calling the onComment-method.
从以下版本开始:
2.0
作者:
Robert Scholte
  • 方法概要

    修饰符和类型
    方法
    说明
    void
    onComment(String comment, int line, int column)
    Called if the parser hits a comment
  • 方法详细资料

    • onComment

      void onComment(String comment, int line, int column)
      Called if the parser hits a comment
      参数:
      comment - the comment
      line - the line number
      column - the column number