Uses of Class
net.sourceforge.pmd.lang.java.ast.ASTFieldDeclaration
-
Packages that use ASTFieldDeclaration Package Description net.sourceforge.pmd.lang.java.ast Contains the classes and interfaces modelling the Java AST.net.sourceforge.pmd.lang.java.metrics.impl net.sourceforge.pmd.lang.java.metrics.impl.visitors net.sourceforge.pmd.lang.java.multifile net.sourceforge.pmd.lang.java.multifile.signature net.sourceforge.pmd.lang.java.rule Contains the built-in rules bundled with the Java distribution.net.sourceforge.pmd.lang.java.rule.codestyle net.sourceforge.pmd.lang.java.rule.design net.sourceforge.pmd.lang.java.rule.documentation net.sourceforge.pmd.lang.java.rule.errorprone net.sourceforge.pmd.lang.java.rule.multithreading net.sourceforge.pmd.lang.java.rule.performance net.sourceforge.pmd.lang.java.typeresolution -
-
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.ast
Methods in net.sourceforge.pmd.lang.java.ast with parameters of type ASTFieldDeclaration Modifier and Type Method Description Object
JavaParserDecoratedVisitor. visit(ASTFieldDeclaration node, Object data)
Deprecated.Object
JavaParserVisitor. visit(ASTFieldDeclaration node, Object data)
Object
JavaParserVisitorAdapter. visit(ASTFieldDeclaration node, Object data)
Object
JavaParserVisitorDecorator. visit(ASTFieldDeclaration node, Object data)
Deprecated. -
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.metrics.impl
Methods in net.sourceforge.pmd.lang.java.metrics.impl that return types with arguments of type ASTFieldDeclaration Modifier and Type Method Description protected List<ASTFieldDeclaration>
AbstractJavaClassMetric. getFields(ASTAnyTypeDeclaration node)
Gets a list of all fields declared in the class. -
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.metrics.impl.visitors
Methods in net.sourceforge.pmd.lang.java.metrics.impl.visitors with parameters of type ASTFieldDeclaration Modifier and Type Method Description Object
NcssBaseVisitor. visit(ASTFieldDeclaration node, Object data)
Deprecated. -
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.multifile
Methods in net.sourceforge.pmd.lang.java.multifile with parameters of type ASTFieldDeclaration Modifier and Type Method Description Object
MultifileVisitor. visit(ASTFieldDeclaration node, Object data)
-
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.multifile.signature
Methods in net.sourceforge.pmd.lang.java.multifile.signature with parameters of type ASTFieldDeclaration Modifier and Type Method Description static JavaFieldSignature
JavaFieldSignature. buildFor(ASTFieldDeclaration node)
Builds a field signature from its AST node. -
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.rule
Methods in net.sourceforge.pmd.lang.java.rule with parameters of type ASTFieldDeclaration Modifier and Type Method Description Object
AbstractJavaRule. visit(ASTFieldDeclaration node, Object data)
Object
SymbolTableTestRule. visit(ASTFieldDeclaration node, Object data)
Deprecated. -
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.rule.codestyle
Methods in net.sourceforge.pmd.lang.java.rule.codestyle with parameters of type ASTFieldDeclaration Modifier and Type Method Description Object
CommentDefaultAccessModifierRule. visit(ASTFieldDeclaration decl, Object data)
Object
FieldDeclarationsShouldBeAtStartOfClassRule. visit(ASTFieldDeclaration node, Object data)
Object
FieldNamingConventionsRule. visit(ASTFieldDeclaration node, Object data)
Object
LinguisticNamingRule. visit(ASTFieldDeclaration node, Object data)
Object
UnnecessaryCastRule. visit(ASTFieldDeclaration node, Object data)
Object
UnnecessaryModifierRule. visit(ASTFieldDeclaration node, Object data)
Object
VariableNamingConventionsRule. visit(ASTFieldDeclaration node, Object data)
Deprecated. -
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.rule.design
Methods in net.sourceforge.pmd.lang.java.rule.design with parameters of type ASTFieldDeclaration Modifier and Type Method Description Object
CouplingBetweenObjectsRule. visit(ASTFieldDeclaration node, Object data)
Object
ExcessivePublicCountRule. visit(ASTFieldDeclaration node, Object data)
Method counts ONLY public class attributes which are not PUBLIC and static- these usually represent constants....Object
NcssTypeCountRule. visit(ASTFieldDeclaration node, Object data)
Deprecated.Object
SingularFieldRule. visit(ASTFieldDeclaration node, Object data)
-
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.rule.documentation
Methods in net.sourceforge.pmd.lang.java.rule.documentation with parameters of type ASTFieldDeclaration Modifier and Type Method Description Object
CommentRequiredRule. visit(ASTFieldDeclaration decl, Object data)
-
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.rule.errorprone
Methods in net.sourceforge.pmd.lang.java.rule.errorprone with parameters of type ASTFieldDeclaration Modifier and Type Method Description Object
AvoidFieldNameMatchingTypeNameRule. visit(ASTFieldDeclaration node, Object data)
-
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.rule.multithreading
Methods in net.sourceforge.pmd.lang.java.rule.multithreading with parameters of type ASTFieldDeclaration Modifier and Type Method Description Object
DoubleCheckedLockingRule. visit(ASTFieldDeclaration fieldDeclaration, Object data)
Object
NonThreadSafeSingletonRule. visit(ASTFieldDeclaration node, Object data)
Object
UnsynchronizedStaticFormatterRule. visit(ASTFieldDeclaration node, Object data)
-
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.rule.performance
Methods in net.sourceforge.pmd.lang.java.rule.performance with parameters of type ASTFieldDeclaration Modifier and Type Method Description Object
RedundantFieldInitializerRule. visit(ASTFieldDeclaration fieldDeclaration, Object data)
-
Uses of ASTFieldDeclaration in net.sourceforge.pmd.lang.java.typeresolution
Methods in net.sourceforge.pmd.lang.java.typeresolution with parameters of type ASTFieldDeclaration Modifier and Type Method Description Object
ClassTypeResolver. visit(ASTFieldDeclaration node, Object data)
Deprecated.
-