blob: e5160771c853ab9063561075d4c05be2d9c388d0 (
plain)
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
29
30
31
32
33
34
35
|
package java.lang.reflect;
public class Modifier
{
public Modifier() { throw new RuntimeException("Stub!"); }
public static int classModifiers() { throw new RuntimeException("Stub!"); }
public static int constructorModifiers() { throw new RuntimeException("Stub!"); }
public static int fieldModifiers() { throw new RuntimeException("Stub!"); }
public static int interfaceModifiers() { throw new RuntimeException("Stub!"); }
public static int methodModifiers() { throw new RuntimeException("Stub!"); }
public static boolean isAbstract(int modifiers) { throw new RuntimeException("Stub!"); }
public static boolean isFinal(int modifiers) { throw new RuntimeException("Stub!"); }
public static boolean isInterface(int modifiers) { throw new RuntimeException("Stub!"); }
public static boolean isNative(int modifiers) { throw new RuntimeException("Stub!"); }
public static boolean isPrivate(int modifiers) { throw new RuntimeException("Stub!"); }
public static boolean isProtected(int modifiers) { throw new RuntimeException("Stub!"); }
public static boolean isPublic(int modifiers) { throw new RuntimeException("Stub!"); }
public static boolean isStatic(int modifiers) { throw new RuntimeException("Stub!"); }
public static boolean isStrict(int modifiers) { throw new RuntimeException("Stub!"); }
public static boolean isSynchronized(int modifiers) { throw new RuntimeException("Stub!"); }
public static boolean isTransient(int modifiers) { throw new RuntimeException("Stub!"); }
public static boolean isVolatile(int modifiers) { throw new RuntimeException("Stub!"); }
public static java.lang.String toString(int modifiers) { throw new RuntimeException("Stub!"); }
public static final int ABSTRACT = 1024;
public static final int FINAL = 16;
public static final int INTERFACE = 512;
public static final int NATIVE = 256;
public static final int PRIVATE = 2;
public static final int PROTECTED = 4;
public static final int PUBLIC = 1;
public static final int STATIC = 8;
public static final int STRICT = 2048;
public static final int SYNCHRONIZED = 32;
public static final int TRANSIENT = 128;
public static final int VOLATILE = 64;
}
|