Package com.thoughtworks.qdox.parser
Interface CommentHandler
-
- All Known Implementing Classes:
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.- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onComment(java.lang.String comment, int line, int column)
Called if the parser hits a comment
-