Uses of Interface
net.sourceforge.pmd.lang.java.ast.JavadocCommentOwner
-
Packages that use JavadocCommentOwner Package Description net.sourceforge.pmd.lang.java.ast Contains the classes and interfaces modelling the Java AST. -
-
Uses of JavadocCommentOwner in net.sourceforge.pmd.lang.java.ast
Subinterfaces of JavadocCommentOwner in net.sourceforge.pmd.lang.java.ast Modifier and Type Interface Description interface
ASTExecutableDeclaration
Groups method and constructor declarations under a common type.interface
ASTTypeDeclaration
Groups class, enum, record, annotation and interface declarations under a common supertype.Classes in net.sourceforge.pmd.lang.java.ast that implement JavadocCommentOwner Modifier and Type Class Description class
ASTAnnotationTypeDeclaration
The declaration of an annotation type.class
ASTAnonymousClassDeclaration
An anonymous class declaration.class
ASTClassDeclaration
Represents class and interface declarations.class
ASTCompactConstructorDeclaration
This defines a compact constructor for a RecordDeclaration (JDK 16 feature).class
ASTConstructorDeclaration
class
ASTEnumConstant
Represents an enum constant declaration within an enum type declaration.class
ASTEnumDeclaration
Represents an enum declaration.class
ASTFieldDeclaration
Represents a field declaration in the body of a type declaration.class
ASTImplicitClassDeclaration
ImplicitClassDeclaration ::= ClassBody ClassBody ::= FieldDeclaration* MethodDeclaration BodyDeclaration*class
ASTMethodDeclaration
A method declaration, in a class or interface declaration.class
ASTPackageDeclaration
Package declaration at the top of a source file.class
ASTRecordDeclaration
A record declaration is a special data class type (JDK 16 feature).Methods in net.sourceforge.pmd.lang.java.ast that return JavadocCommentOwner Modifier and Type Method Description @Nullable JavadocCommentOwner
JavadocComment. getOwner()
Returns the owner of this comment.
-