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

com.vocalabs.egtest.processor.data.PatternMatchExample Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
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