Uses of Interface
com.github.javaparser.ast.nodeTypes.NodeWithType
-
Packages that use NodeWithType Package Description com.github.javaparser.ast.body com.github.javaparser.ast.expr -
-
Uses of NodeWithType in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body that implement NodeWithType Modifier and Type Class Description classAnnotationMemberDeclarationThe "int id();" in@interface X { int id(); }classMethodDeclarationA method declaration.classParameterThe parameters to a method or lambda.classReceiverParameterThe rather obscure "receiver parameter" feature of Java.classVariableDeclaratorThe declaration of a variable.
Inint x = 14, y = 3;"int x = 14" and "int y = 3" are VariableDeclarators. -
Uses of NodeWithType in com.github.javaparser.ast.expr
Classes in com.github.javaparser.ast.expr that implement NodeWithType Modifier and Type Class Description classCastExprA typecast.classClassExprDefines an expression that accesses the class of a type.classInstanceOfExprUsage of the instanceof operator.classObjectCreationExprA constructor call.classTypeExprThis class is just instantiated as scopes for MethodReferenceExpr nodes to encapsulate Types.
-