We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f3b3df commit fe5da50Copy full SHA for fe5da50
src/main/java/com/creatubbles/api/APIVersion.java
@@ -1,12 +1,14 @@
1
package com.creatubbles.api;
2
3
+import java.lang.annotation.Documented;
4
import java.lang.annotation.ElementType;
5
import java.lang.annotation.Retention;
6
import java.lang.annotation.RetentionPolicy;
7
import java.lang.annotation.Target;
8
9
@Retention(RetentionPolicy.RUNTIME)
10
@Target({ElementType.TYPE})
11
+@Documented
12
public @interface APIVersion {
13
int value() default 1;
14
}
0 commit comments