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

com.vocalabs.egtest.processor.data.FunctionMatchExample 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.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