|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
|
|
package jdk.jfr; |
|
|
|
import java.lang.annotation.ElementType; |
|
import java.lang.annotation.Inherited; |
|
import java.lang.annotation.Retention; |
|
import java.lang.annotation.RetentionPolicy; |
|
import java.lang.annotation.Target; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
@MetadataDefinition |
|
@Label("Experimental") |
|
@Description("Element is not to be shown to a user by default") |
|
@Inherited |
|
@Retention(RetentionPolicy.RUNTIME) |
|
@Target({ ElementType.FIELD, ElementType.TYPE }) |
|
public @interface Experimental { |
|
} |