Uses of Interface
com.github.javaparser.ast.nodeTypes.modifiers.NodeWithProtectedModifier
-
Packages that use NodeWithProtectedModifier Package Description com.github.javaparser.ast.body com.github.javaparser.ast.nodeTypes.modifiers -
-
Uses of NodeWithProtectedModifier in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body that implement NodeWithProtectedModifier Modifier and Type Class Description class
AnnotationDeclaration
An annotation type declaration.@interface X { ... }
class
CallableDeclaration<T extends CallableDeclaration<?>>
Represents a declaration which is callable eg.class
ClassOrInterfaceDeclaration
A definition of a class or interface.class X { ... }
interface X { ... }
class
CompactConstructorDeclaration
The record declaration's constructorclass
ConstructorDeclaration
A constructor declaration:class X { X() { } }
where X(){} is the constructor declaration.class
EnumDeclaration
The declaration of an enum.enum X { ... }
class
FieldDeclaration
The declaration of a field in a class.class
MethodDeclaration
A method declaration.class
RecordDeclaration
The record declarationclass
TypeDeclaration<T extends TypeDeclaration<?>>
A base class for all types of type declarations. -
Uses of NodeWithProtectedModifier in com.github.javaparser.ast.nodeTypes.modifiers
Subinterfaces of NodeWithProtectedModifier in com.github.javaparser.ast.nodeTypes.modifiers Modifier and Type Interface Description interface
NodeWithAccessModifiers<N extends Node>
A node that can be public, protected, and/or private.
-