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

de.japkit.annotations.AnnotationValueParam Maven / Gradle / Ivy

There is a newer version: 1.11
Show newest version
package de.japkit.annotations;

import java.lang.annotation.Annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

import de.japkit.metaannotations.DefaultAnnotation;

/**
 * If an parameter is annotated with this annotation, the according annotation value is "injected" into the parameter
 * when a call to the method is generated.
 * 
 * @author stefan
 *
 */
@Target(ElementType.PARAMETER)
public @interface AnnotationValueParam {
	Class annotation() default DefaultAnnotation.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy