Interface ResolvedMethod
-
- All Superinterfaces:
ResolvedExecutable
public interface ResolvedMethod extends ResolvedExecutable
Resolvedrepresentation of aMethodDeclaration.- Since:
- 2.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MethodDeclarationgetDeclaration()TypeReferencegetResolvedReturnType()java.lang.Iterable<? extends ResolvedTypeParameter>getResolvedTypeParameters()-
Methods inherited from interface org.eclipse.xtend.lib.macro.declaration.ResolvedExecutable
getResolvedErasureSignature, getResolvedExceptionTypes, getResolvedParameters, getSimpleSignature
-
-
-
-
Method Detail
-
getDeclaration
MethodDeclaration getDeclaration()
- Specified by:
getDeclarationin interfaceResolvedExecutable- Returns:
- the executable that is
resolved
-
getResolvedReturnType
TypeReference getResolvedReturnType()
- Returns:
- the
resolvedreturn type
-
getResolvedTypeParameters
java.lang.Iterable<? extends ResolvedTypeParameter> getResolvedTypeParameters()
- Returns:
- the
resolvedtype parameters.
-
-