|
9 | 9 |
|
10 | 10 | public interface Declaration { |
11 | 11 | // Access flags for Class, Field, Method, Nested class, Module, Module Requires, Module Exports, Module Opens |
12 | | - int FLAG_PUBLIC = 0x0001; // C F M N . . . . |
13 | | - int FLAG_PRIVATE = 0x0002; // . F M N . . . . |
14 | | - int FLAG_PROTECTED = 0x0004; // . F M N . . . . |
15 | | - int FLAG_STATIC = 0x0008; // C F M N . . . . |
16 | | - int FLAG_FINAL = 0x0010; // C F M N . . . . |
17 | | - int FLAG_SYNCHRONIZED = 0x0020; // . . M . . . . . |
18 | | - int FLAG_SUPER = 0x0020; // C . . . . . . . |
19 | | - int FLAG_OPEN = 0x0020; // . . . . Mo . . . |
20 | | - int FLAG_TRANSITIVE = 0x0020; // . . . . . MR . . |
21 | | - int FLAG_VOLATILE = 0x0040; // . F . . . . . . |
22 | | - int FLAG_BRIDGE = 0x0040; // . . M . . . . . |
23 | | - int FLAG_STATIC_PHASE = 0x0040; // . . M . . MR . . |
24 | | - int FLAG_TRANSIENT = 0x0080; // . F . . . . . . |
25 | | - int FLAG_VARARGS = 0x0080; // . . M . . . . . |
26 | | - int FLAG_NATIVE = 0x0100; // . . M . . . . . |
27 | | - int FLAG_INTERFACE = 0x0200; // C . . N . . . . |
28 | | - int FLAG_ABSTRACT = 0x0400; // C . M N . . . . |
29 | | - int FLAG_STRICT = 0x0800; // . . M . . . . . |
30 | | - int FLAG_SYNTHETIC = 0x1000; // C F M N Mo MR ME MO |
31 | | - int FLAG_ANNOTATION = 0x2000; // C . . N . . . . |
32 | | - int FLAG_ENUM = 0x4000; // C F . N . . . . |
33 | | - int FLAG_MODULE = 0x8000; // C . . . . . . . |
34 | | - int FLAG_MANDATED = 0x8000; // . . . . Mo MR ME MO |
35 | | - |
| 12 | + int FLAG_PUBLIC = 0x0001; // C F M N . . . . |
| 13 | + int FLAG_PRIVATE = 0x0002; // . F M N . . . . |
| 14 | + int FLAG_PROTECTED = 0x0004; // . F M N . . . . |
| 15 | + int FLAG_STATIC = 0x0008; // C F M N . . . . |
| 16 | + int FLAG_FINAL = 0x0010; // C F M N . . . . |
| 17 | + int FLAG_SYNCHRONIZED = 0x0020; // . . M . . . . . |
| 18 | + int FLAG_SUPER = 0x0020; // C . . . . . . . |
| 19 | + int FLAG_OPEN = 0x0020; // . . . . Mo . . . |
| 20 | + int FLAG_TRANSITIVE = 0x0020; // . . . . . MR . . |
| 21 | + int FLAG_VOLATILE = 0x0040; // . F . . . . . . |
| 22 | + int FLAG_BRIDGE = 0x0040; // . . M . . . . . |
| 23 | + int FLAG_STATIC_PHASE = 0x0040; // . . M . . MR . . |
| 24 | + int FLAG_TRANSIENT = 0x0080; // . F . . . . . . |
| 25 | + int FLAG_VARARGS = 0x0080; // . . M . . . . . |
| 26 | + int FLAG_NATIVE = 0x0100; // . . M . . . . . |
| 27 | + int FLAG_INTERFACE = 0x0200; // C . . N . . . . |
| 28 | + int FLAG_ABSTRACT = 0x0400; // C . M N . . . . |
| 29 | + int FLAG_STRICT = 0x0800; // . . M . . . . . |
| 30 | + int FLAG_SYNTHETIC = 0x1000; // C F M N Mo MR ME MO |
| 31 | + int FLAG_ANNOTATION = 0x2000; // C . . N . . . . |
| 32 | + int FLAG_ENUM = 0x4000; // C F . N . . . . |
| 33 | + int FLAG_MODULE = 0x8000; // C . . . . . . . |
| 34 | + int FLAG_MANDATED = 0x8000; // . . . . Mo MR ME MO |
| 35 | + |
| 36 | + // Extension |
| 37 | + int FLAG_DEFAULT = 0x10000; // . . M . . . . . |
| 38 | + |
36 | 39 | void accept(DeclarationVisitor visitor); |
37 | 40 | } |
0 commit comments