Uses of Interface
com.github.javaparser.ast.nodeTypes.NodeWithSimpleName
Packages that use NodeWithSimpleName
Package
Description
-
Uses of NodeWithSimpleName in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body that implement NodeWithSimpleNameModifier 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 { ... }classA method declaration.classThe parameters to a method or lambda.classThe record declarationclassTypeDeclaration<T extends TypeDeclaration<?>>A base class for all types of type declarations.classThe declaration of a variable.
Inint x = 14, y = 3;"int x = 14" and "int y = 3" are VariableDeclarators. -
Uses of NodeWithSimpleName in com.github.javaparser.ast.expr
Classes in com.github.javaparser.ast.expr that implement NodeWithSimpleNameModifier and TypeClassDescriptionclassAccess of a field of an object or a class.classA value for a member of an annotation.classA method call on an object or a class.classWhenever a SimpleName is used in an expression, it is wrapped in NameExpr.classThe instanceof statement -
Uses of NodeWithSimpleName in com.github.javaparser.ast.nodeTypes
Subinterfaces of NodeWithSimpleName in com.github.javaparser.ast.nodeTypesModifier and TypeInterfaceDescriptioninterfaceNodeWithMembers<N extends Node>A node having members. -
Uses of NodeWithSimpleName in com.github.javaparser.ast.type
Classes in com.github.javaparser.ast.type that implement NodeWithSimpleNameModifier and TypeClassDescriptionclassA class or an interface type.classA type parameter.