com.vocalabs.egtest.processor.data.PatternMatchExample 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.VariableElement;
import java.lang.annotation.Annotation;
public class PatternMatchExample extends MatchExample {
private final VariableElement element;
PatternMatchExample(Annotation annotation, VariableElement element) {
super(annotation);
this.element = element;
}
@Override
public VariableElement getElement() { return element; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy