bboss.org.jgroups.annotations.Experimental Maven / Gradle / Ivy
The newest version!
package bboss.org.jgroups.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Elements annotated with this annotation are experimental and may get removed from the distribution at any time
* @author Bela Ban
* @version $Id: Experimental.java,v 1.4 2010/02/23 08:11:49 belaban Exp $
*/
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD, ElementType.PACKAGE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Experimental {
String comment() default "";
}