| Package | Description |
|---|---|
| com.puppycrawl.tools.checkstyle.api |
Contains the core API to be used to implement checks.
|
| com.puppycrawl.tools.checkstyle.checks.javadoc |
Contains the Javadoc checks that are bundled with the main distribution.
|
| Modifier and Type | Method and Description |
|---|---|
DetailNode[] |
DetailNode.getChildren()
Array of children.
|
DetailNode |
DetailNode.getParent()
Parent node.
|
| Modifier and Type | Class and Description |
|---|---|
class |
JavadocNodeImpl
Implementation of DetailNode interface that is mutable.
|
| Modifier and Type | Method and Description |
|---|---|
static DetailNode |
JavadocUtils.findFirstToken(DetailNode aNode,
int aType)
Returns the first child token that has a specified type.
|
DetailNode[] |
JavadocNodeImpl.getChildren() |
static DetailNode |
JavadocUtils.getFirstChild(DetailNode aNode)
Gets first child node of specified node.
|
static DetailNode |
JavadocUtils.getNextSibling(DetailNode aNode)
Gets next sibling of specified node.
|
DetailNode |
JavadocNodeImpl.getParent() |
static DetailNode |
JavadocUtils.getPreviousSibling(DetailNode aNode)
Gets previous sibling of specified node.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractJavadocCheck.beginJavadocTree(DetailNode aRootAst)
Called before the starting to process a tree.
|
static boolean |
JavadocUtils.branchContains(DetailNode aNode,
int aType)
Checks whether aNode contains any node of specified type among children on any deep level.
|
static DetailNode |
JavadocUtils.findFirstToken(DetailNode aNode,
int aType)
Returns the first child token that has a specified type.
|
void |
AbstractJavadocCheck.finishJavadocTree(DetailNode aRootAst)
Called after finished processing a tree.
|
static DetailNode |
JavadocUtils.getFirstChild(DetailNode aNode)
Gets first child node of specified node.
|
static DetailNode |
JavadocUtils.getNextSibling(DetailNode aNode)
Gets next sibling of specified node.
|
static DetailNode |
JavadocUtils.getPreviousSibling(DetailNode aNode)
Gets previous sibling of specified node.
|
void |
AbstractJavadocCheck.leaveJavadocToken(DetailNode aAst)
Called after all the child nodes have been process.
|
void |
JavadocNodeImpl.setChildren(DetailNode[] aChildren) |
void |
JavadocNodeImpl.setParent(DetailNode aParent) |
void |
SingleLineJavadocCheck.visitJavadocToken(DetailNode aAst) |
void |
SummaryJavadocCheck.visitJavadocToken(DetailNode aAst) |
void |
JavadocTagContinuationIndentationCheck.visitJavadocToken(DetailNode aAst) |
void |
NonEmptyAtclauseDescriptionCheck.visitJavadocToken(DetailNode aAst) |
void |
AtclauseOrderCheck.visitJavadocToken(DetailNode aAst) |
void |
AbstractJavadocCheck.visitJavadocToken(DetailNode aAst)
Called to process a Javadoc token.
|
void |
JavadocParagraphCheck.visitJavadocToken(DetailNode aAst) |
Copyright © 2001-2014. All Rights Reserved.