1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 package webserver.nsapi;
29
30 import java.lang.annotation.
ElementType;
31 import java.lang.annotation.
Retention;
32 import java.lang.annotation.
RetentionPolicy;
33 import java.lang.annotation.
Target;
34
35
36
37
38
39
40 @Target({
ElementType.
TYPE})
41 @Retention(
RetentionPolicy.
RUNTIME)
42 public @interface Module {
43 String name();
44 }
45