Uses of Interface
net.sourceforge.pmd.lang.java.ast.ASTExecutableDeclaration
-
Packages that use ASTExecutableDeclaration Package Description net.sourceforge.pmd.lang.java.ast Contains the classes and interfaces modelling the Java AST.net.sourceforge.pmd.lang.java.metrics -
-
Uses of ASTExecutableDeclaration in net.sourceforge.pmd.lang.java.ast
Classes in net.sourceforge.pmd.lang.java.ast that implement ASTExecutableDeclaration Modifier and Type Class Description class
ASTConstructorDeclaration
class
ASTMethodDeclaration
A method declaration, in a class or interface declaration.Methods in net.sourceforge.pmd.lang.java.ast that return ASTExecutableDeclaration Modifier and Type Method Description ASTExecutableDeclaration
ASTThrowsList. getOwner()
Returns the method or constructor that owns this throws clause.Methods in net.sourceforge.pmd.lang.java.ast that return types with arguments of type ASTExecutableDeclaration Modifier and Type Method Description default NodeStream<ASTExecutableDeclaration>
ASTTypeDeclaration. getOperations()
Returns the operations declared in this class (methods and constructors).Methods in net.sourceforge.pmd.lang.java.ast with parameters of type ASTExecutableDeclaration Modifier and Type Method Description R
JavaVisitorBase. visitMethodOrCtor(ASTExecutableDeclaration node, P data)
-
Uses of ASTExecutableDeclaration in net.sourceforge.pmd.lang.java.metrics
Fields in net.sourceforge.pmd.lang.java.metrics with type parameters of type ASTExecutableDeclaration Modifier and Type Field Description static Metric<ASTExecutableDeclaration,Integer>
JavaMetrics. COGNITIVE_COMPLEXITY
Cognitive complexity is a measure of how difficult it is for humans to read and understand a method.static Metric<ASTExecutableDeclaration,Integer>
JavaMetrics. CYCLO
Number of independent paths through a block of code.static Metric<ASTExecutableDeclaration,BigInteger>
JavaMetrics. NPATH
Number of acyclic execution paths through a piece of code.
-