All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.revapi.java.spi.JavaMethodElement Maven / Gradle / Ivy

There is a newer version: 0.25.0
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy