mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
committed by
Yan Zhulanow
parent
0fc92c784b
commit
927280f7ce
13
plugins/annotation-processing/testData/javaWrappers/MetaAnnotation/MetaAnnotation.java
vendored
Normal file
13
plugins/annotation-processing/testData/javaWrappers/MetaAnnotation/MetaAnnotation.java
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
// MetaAnnotation
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Deprecated
|
||||
@Target({ ElementType.CONSTRUCTOR, ElementType.FIELD })
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface MetaAnnotation {
|
||||
String strValue();
|
||||
}
|
||||
6
plugins/annotation-processing/testData/javaWrappers/MetaAnnotation/MetaAnnotation.txt
vendored
Normal file
6
plugins/annotation-processing/testData/javaWrappers/MetaAnnotation/MetaAnnotation.txt
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
@java.lang.Deprecated
|
||||
@java.lang.annotation.Target(value = { CONSTRUCTOR, FIELD })
|
||||
@java.lang.annotation.Retention(value = RUNTIME)
|
||||
public abstract @interface MetaAnnotation {
|
||||
public abstract java.lang.String strValue()
|
||||
}
|
||||
Reference in New Issue
Block a user