Uses of Class
com.github.javaparser.ast.body.CallableDeclaration
-
Packages that use CallableDeclaration Package Description com.github.javaparser.ast.body com.github.javaparser.generator -
-
Uses of CallableDeclaration in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body with type parameters of type CallableDeclaration Modifier and Type Class Description class
CallableDeclaration<T extends CallableDeclaration<?>>
Represents a declaration which is callable eg.Subclasses of CallableDeclaration in com.github.javaparser.ast.body Modifier and Type Class Description class
ConstructorDeclaration
A constructor declaration:class X { X() { } }
where X(){} is the constructor declaration.class
MethodDeclaration
A method declaration.Methods in com.github.javaparser.ast.body that return CallableDeclaration Modifier and Type Method Description CallableDeclaration<?>
CallableDeclaration. clone()
Methods in com.github.javaparser.ast.body that return types with arguments of type CallableDeclaration Modifier and Type Method Description List<CallableDeclaration<?>>
TypeDeclaration. getCallablesWithSignature(CallableDeclaration.Signature signature)
-
Uses of CallableDeclaration in com.github.javaparser.generator
Methods in com.github.javaparser.generator with parameters of type CallableDeclaration Modifier and Type Method 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.
-