com.almende.eve.agent.annotation.Name Maven / Gradle / Ivy
package com.almende.eve.agent.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation for parameter names.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(value=ElementType.PARAMETER)
public @interface Name {
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy