com.vocalabs.egtest.processor.data.FunctionMatchExample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of egtest-processor Show documentation
Show all versions of egtest-processor Show documentation
Java annotation processor for turning EgTest annotations into JUnit tests.
package com.vocalabs.egtest.processor.data;
import javax.lang.model.element.ExecutableElement;
import java.lang.annotation.Annotation;
public class FunctionMatchExample extends MatchExample {
private final ExecutableElement element;
FunctionMatchExample(Annotation annotation, ExecutableElement element) {
super(annotation);
this.element = element;
}
@Override
public ExecutableElement getElement() {
return element;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy