esoe
2 years ago
9 changed files with 13 additions and 10 deletions
@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
package ru.molokoin; |
||||
|
||||
public class AnnotationReader { |
||||
|
||||
} |
@ -1,10 +1,16 @@
@@ -1,10 +1,16 @@
|
||||
package ru.molokoin; |
||||
|
||||
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; |
||||
|
||||
@Inherited |
||||
@Target(ElementType.TYPE) |
||||
@Retention(RetentionPolicy.RUNTIME) |
||||
public @interface File { |
||||
String name() default "noname"; |
||||
byte size() default "0"; |
||||
byte size() default 0; |
||||
Extension extension () default Extension.OTHER; |
||||
} |
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue