Class JavassistMethodLikeDeclarationAdapter
- java.lang.Object
-
- com.github.javaparser.symbolsolver.javassistmodel.JavassistMethodLikeDeclarationAdapter
-
public class JavassistMethodLikeDeclarationAdapter extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description JavassistMethodLikeDeclarationAdapter(javassist.CtBehavior ctBehavior, com.github.javaparser.resolution.TypeSolver typeSolver, com.github.javaparser.resolution.declarations.ResolvedMethodLikeDeclaration declaration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetNumberOfParams()intgetNumberOfSpecifiedExceptions()com.github.javaparser.resolution.declarations.ResolvedParameterDeclarationgetParam(int i)com.github.javaparser.resolution.types.ResolvedTypegetReturnType()com.github.javaparser.resolution.types.ResolvedTypegetSpecifiedException(int index)java.util.List<com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration>getTypeParameters()
-
-
-
Method Detail
-
getNumberOfParams
public int getNumberOfParams()
-
getParam
public com.github.javaparser.resolution.declarations.ResolvedParameterDeclaration getParam(int i)
-
getTypeParameters
public java.util.List<com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration> getTypeParameters()
-
getNumberOfSpecifiedExceptions
public int getNumberOfSpecifiedExceptions()
-
getSpecifiedException
public com.github.javaparser.resolution.types.ResolvedType getSpecifiedException(int index)
-
getReturnType
public com.github.javaparser.resolution.types.ResolvedType getReturnType()
-
-