Package org.revapi.java.spi
Interface JavaMethodElement
-
- All Superinterfaces:
Comparable<JavaElement>
,org.revapi.Element<JavaElement>
,JavaElement
,JavaModelElement
public interface JavaMethodElement extends JavaModelElement
Elements in the element forest that represent Java methods, will implement this interface.- Since:
- 0.1
- Author:
- Lukas Krejci
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutableElement
getDeclaringElement()
For an inherited method for example, this will return the element in the super type that declares this method.ExecutableType
getModelRepresentation()
Note that this is distinctly different fromJavaModelElement.getDeclaringElement()
.JavaTypeElement
getParent()
-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface org.revapi.Element
as, getApi, getArchive, getChildren, getCumulativeReferencedElements, getCumulativeReferencingElements, getFullHumanReadableString, getReferencedElements, getReferencingElements, iterateOverChildren, searchChildren, searchChildren, setParent, stream
-
Methods inherited from interface org.revapi.java.spi.JavaElement
getTypeEnvironment
-
Methods inherited from interface org.revapi.java.spi.JavaModelElement
getParentType, isInherited
-
-
-
-
Method Detail
-
getModelRepresentation
ExecutableType getModelRepresentation()
Description copied from interface:JavaModelElement
Note that this is distinctly different fromJavaModelElement.getDeclaringElement()
. This method returns a type mirror describing an element on its position in the type hierarchy. I.e. if an inherited method with type parameters resolved according to the class it is inherited "to".- Specified by:
getModelRepresentation
in interfaceJavaModelElement
- Returns:
- the representation of this java element at its position in the type hierarchy
-
getDeclaringElement
ExecutableElement getDeclaringElement()
Description copied from interface:JavaModelElement
For an inherited method for example, this will return the element in the super type that declares this method.- Specified by:
getDeclaringElement
in interfaceJavaModelElement
- Returns:
- The element that represents the declaration this model element.
-
getParent
@Nonnull JavaTypeElement getParent()
- Specified by:
getParent
in interfaceorg.revapi.Element<JavaElement>
- Specified by:
getParent
in interfaceJavaModelElement
-
-