Class JavadocDetailNodeParser.ParseStatus

  • Enclosing class:
    JavadocDetailNodeParser

    public static class JavadocDetailNodeParser.ParseStatus
    extends java.lang.Object
    Contains result of parsing javadoc comment: DetailNode tree and parse error message.
    • Constructor Detail

      • ParseStatus

        public ParseStatus()
    • Method Detail

      • getTree

        public DetailNode getTree()
        Getter for DetailNode tree.
        Returns:
        DetailNode tree if parsing was successful, null otherwise.
      • setTree

        public void setTree​(DetailNode tree)
        Sets DetailNode tree.
        Parameters:
        tree - DetailNode tree.
      • getParseErrorMessage

        public JavadocDetailNodeParser.ParseErrorMessage getParseErrorMessage()
        Getter for error message during parsing.
        Returns:
        Error message if parsing was unsuccessful, null otherwise.