Uses of Interface
com.github.javaparser.ast.nodeTypes.NodeWithJavadoc
Packages that use NodeWithJavadoc
-
Uses of NodeWithJavadoc in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body that implement NodeWithJavadocModifier and TypeClassDescriptionclassAn annotation type declaration.@interface X { ... }classThe "int id();" in@interface X { int id(); }classCallableDeclaration<T extends CallableDeclaration<?>>Represents a declaration which is callable eg.classA definition of a class or interface.class X { ... }interface X { ... }classThe record declaration's constructorclassA constructor declaration:class X { X() { } }where X(){} is the constructor declaration.classOne of the values an enum can take.classThe declaration of an enum.enum X { ... }classThe declaration of a field in a class.classA (possibly static) initializer body.classA method declaration.classThe record declarationclassTypeDeclaration<T extends TypeDeclaration<?>>A base class for all types of type declarations.