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

net.amygdalum.testrecorder.hints.Name Maven / Gradle / Ivy

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

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

/**
 * This annotation is a generic one to assign a name to a type, method, field, or variable
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE, ElementType.FIELD, ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE })
public @interface Name {
	String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy