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

com.cedarsoft.annotations.instrumentation.test.CustomThreadAnnotation Maven / Gradle / Ivy

There is a newer version: 8.9.0
Show newest version
package com.cedarsoft.annotations.instrumentation.test;

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

import com.cedarsoft.annotations.meta.ThreadDescribingAnnotation;

/**
 * @author Johannes Schneider ([email protected])
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target( {ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD, ElementType.CONSTRUCTOR} )
@ThreadDescribingAnnotation("my-custom-thread")
public @interface CustomThreadAnnotation {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy