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

com.nedap.archie.rminfo.InvariantMethod Maven / Gradle / Ivy

The newest version!
package com.nedap.archie.rminfo;

import java.lang.reflect.Method;
/** A reference to an invariant method, with the method reference and the invariant annotation present */
public class InvariantMethod {

    private Method method;
    private Invariant annotation;

    public InvariantMethod(Method method, Invariant annotation) {
        this.method = method;
        this.annotation = annotation;
    }

    public Method getMethod() {
        return method;
    }

    public Invariant getAnnotation() {
        return annotation;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy