org.revapi.java.spi.JavaMethodElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of revapi-java-spi Show documentation
Show all versions of revapi-java-spi Show documentation
SPI for extending the java analyzer of Revapi.
package org.revapi.java.spi;
import javax.annotation.Nonnull;
import javax.lang.model.element.ExecutableElement;
/**
* Elements in the element forest that represent Java methods, will implement this interface.
*
* @author Lukas Krejci
* @since 0.1
*/
public interface JavaMethodElement extends JavaModelElement {
@Nonnull
@Override
ExecutableElement getModelElement();
}