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

net.amygdalum.testrecorder.util.AnnotatedBy Maven / Gradle / Ivy

The newest version!
package net.amygdalum.testrecorder.util;

import java.lang.annotation.ElementType;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Repeatable(AnnotatedBys.class)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface AnnotatedBy {
    String name();
    String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy