Package | Description |
---|---|
com.github.javaparser.ast.body | |
com.github.javaparser.generator |
Modifier and Type | Class and Description |
---|---|
class |
CallableDeclaration<T extends CallableDeclaration<?>>
Represents a declaration which is callable eg.
|
Modifier and Type | Class and Description |
---|---|
class |
ConstructorDeclaration
A constructor declaration:
class X { X() { } } where X(){} is the constructor declaration. |
class |
MethodDeclaration
A method declaration.
|
Modifier and Type | Method and Description |
---|---|
CallableDeclaration<?> |
CallableDeclaration.clone() |
Modifier and Type | Method and Description |
---|---|
List<CallableDeclaration<?>> |
TypeDeclaration.getCallablesWithSignature(CallableDeclaration.Signature signature) |
Modifier and Type | Method and Description |
---|---|
protected void |
NodeGenerator.addOrReplaceWhenSameSignature(ClassOrInterfaceDeclaration containingClassOrInterface,
CallableDeclaration<?> callable)
Utility method that looks for a method or constructor with an identical signature as "callable" and replaces it
with callable.
|
protected void |
NodeGenerator.replaceWhenSameSignature(ClassOrInterfaceDeclaration containingClassOrInterface,
CallableDeclaration<?> callable)
Utility method that looks for a method or constructor with an identical signature as "callable" and replaces it
with callable.
|
Copyright © 2007–2023. All rights reserved.