com.lingcreative.concurrent.Reentrant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of concurrent-utils Show documentation
Show all versions of concurrent-utils Show documentation
Some utilities for concurrent java programming.
The newest version!
package com.lingcreative.concurrent;
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;
@Documented
@Retention(RetentionPolicy.SOURCE)
@Target({ ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.PARAMETER })
public @interface Reentrant {
/**
* Note for the annotated element. Alias for {@link #note()}
*/
String value() default "";
/**
* Note for the annotated element.
*/
String note() default "";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy