Uses of Interface
com.puppycrawl.tools.checkstyle.api.DetailNode
-
Packages that use DetailNode Package Description com.puppycrawl.tools.checkstyle Contains the implementation of the Checkstyle framework.com.puppycrawl.tools.checkstyle.api Contains the core API to be used to implement checks.com.puppycrawl.tools.checkstyle.checks.annotation Contains the Annotation checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.checks.javadoc Contains the Javadoc checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.gui User interface classes for CheckStyle.com.puppycrawl.tools.checkstyle.meta Contains module metadata generation classes for checkstyle.com.puppycrawl.tools.checkstyle.utils Contains utils classes for checkstyle. -
-
Uses of DetailNode in com.puppycrawl.tools.checkstyle
Methods in com.puppycrawl.tools.checkstyle that return DetailNode Modifier and Type Method Description DetailNodeJavadocDetailNodeParser.ParseStatus. getTree()Getter for DetailNode tree.static DetailNodeDetailNodeTreeStringPrinter. parseJavadocAsDetailNode(DetailAST blockComment)Parse block comment DetailAST as Javadoc DetailNode tree.Methods in com.puppycrawl.tools.checkstyle with parameters of type DetailNode Modifier and Type Method Description static java.lang.StringDetailNodeTreeStringPrinter. printTree(DetailNode ast, java.lang.String rootPrefix, java.lang.String prefix)Print AST.voidJavadocDetailNodeParser.ParseStatus. setTree(DetailNode tree)Sets DetailNode tree. -
Uses of DetailNode in com.puppycrawl.tools.checkstyle.api
Methods in com.puppycrawl.tools.checkstyle.api that return DetailNode Modifier and Type Method Description DetailNode[]DetailNode. getChildren()Array of children.DetailNodeDetailNode. getParent()Parent node. -
Uses of DetailNode in com.puppycrawl.tools.checkstyle.checks.annotation
Methods in com.puppycrawl.tools.checkstyle.checks.annotation with parameters of type DetailNode Modifier and Type Method Description voidMissingDeprecatedCheck. visitJavadocToken(DetailNode ast) -
Uses of DetailNode in com.puppycrawl.tools.checkstyle.checks.javadoc
Classes in com.puppycrawl.tools.checkstyle.checks.javadoc that implement DetailNode Modifier and Type Class Description classJavadocNodeImplImplementation of DetailNode interface that is mutable.Methods in com.puppycrawl.tools.checkstyle.checks.javadoc that return DetailNode Modifier and Type Method Description DetailNode[]JavadocNodeImpl. getChildren()DetailNodeJavadocNodeImpl. getParent()Methods in com.puppycrawl.tools.checkstyle.checks.javadoc with parameters of type DetailNode Modifier and Type Method Description voidAbstractJavadocCheck. beginJavadocTree(DetailNode rootAst)Called before the starting to process a tree.voidAbstractJavadocCheck. finishJavadocTree(DetailNode rootAst)Called after finished processing a tree.voidAbstractJavadocCheck. leaveJavadocToken(DetailNode ast)Called after all the child nodes have been process.voidJavadocNodeImpl. setChildren(DetailNode... children)Sets array of child nodes.voidJavadocNodeImpl. setParent(DetailNode parent)Sets parent node.abstract voidAbstractJavadocCheck. visitJavadocToken(DetailNode ast)Called to process a Javadoc token.voidAtclauseOrderCheck. visitJavadocToken(DetailNode ast)voidJavadocBlockTagLocationCheck. visitJavadocToken(DetailNode ast)voidJavadocMissingWhitespaceAfterAsteriskCheck. visitJavadocToken(DetailNode detailNode)voidJavadocParagraphCheck. visitJavadocToken(DetailNode ast)voidJavadocTagContinuationIndentationCheck. visitJavadocToken(DetailNode ast)voidNonEmptyAtclauseDescriptionCheck. visitJavadocToken(DetailNode ast)voidRequireEmptyLineBeforeBlockTagGroupCheck. visitJavadocToken(DetailNode tagNode)Logs when there is no empty line before the tag.voidSingleLineJavadocCheck. visitJavadocToken(DetailNode ast)voidSummaryJavadocCheck. visitJavadocToken(DetailNode ast) -
Uses of DetailNode in com.puppycrawl.tools.checkstyle.gui
Constructors in com.puppycrawl.tools.checkstyle.gui with parameters of type DetailNode Constructor Description CodeSelectorPresentation(DetailNode node, java.util.List<java.lang.Integer> lines2position)Constructor. -
Uses of DetailNode in com.puppycrawl.tools.checkstyle.meta
Methods in com.puppycrawl.tools.checkstyle.meta with parameters of type DetailNode Modifier and Type Method Description voidJavadocMetadataScraper. beginJavadocTree(DetailNode rootAst)voidJavadocMetadataScraper. finishJavadocTree(DetailNode rootAst)voidJavadocMetadataScraper. scrapeContent(DetailNode ast)Method containing the core logic of scraping.voidJavadocMetadataScraper. visitJavadocToken(DetailNode ast) -
Uses of DetailNode in com.puppycrawl.tools.checkstyle.utils
Methods in com.puppycrawl.tools.checkstyle.utils that return DetailNode Modifier and Type Method Description static DetailNodeJavadocUtil. findFirstToken(DetailNode detailNode, int type)Returns the first child token that has a specified type.static DetailNodeJavadocUtil. getFirstChild(DetailNode node)Gets first child node of specified node.static DetailNodeJavadocUtil. getNextSibling(DetailNode node)Gets next sibling of specified node.static DetailNodeJavadocUtil. getNextSibling(DetailNode node, int tokenType)Gets next sibling of specified node with the specified type.static DetailNodeJavadocUtil. getPreviousSibling(DetailNode node)Gets previous sibling of specified node.Methods in com.puppycrawl.tools.checkstyle.utils with parameters of type DetailNode Modifier and Type Method Description static booleanJavadocUtil. containsInBranch(DetailNode node, int type)Checks whether node contains any node of specified type among children on any deep level.static DetailNodeJavadocUtil. findFirstToken(DetailNode detailNode, int type)Returns the first child token that has a specified type.static DetailNodeJavadocUtil. getFirstChild(DetailNode node)Gets first child node of specified node.static DetailNodeJavadocUtil. getNextSibling(DetailNode node)Gets next sibling of specified node.static DetailNodeJavadocUtil. getNextSibling(DetailNode node, int tokenType)Gets next sibling of specified node with the specified type.static DetailNodeJavadocUtil. getPreviousSibling(DetailNode node)Gets previous sibling of specified node.static java.lang.StringJavadocUtil. getTagName(DetailNode javadocTagSection)Gets tag name from javadocTagSection.
-