Uses of Interface
com.github.javaparser.ast.nodeTypes.NodeWithTypeParameters
Packages that use NodeWithTypeParameters
-
Uses of NodeWithTypeParameters in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body that implement NodeWithTypeParametersModifier and TypeClassDescriptionclassCallableDeclaration<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.classA method declaration.classThe record declaration