summaryrefslogtreecommitdiffstats
path: root/core-stubs-mini/src/java/lang/reflect/Array.java
diff options
context:
space:
mode:
Diffstat (limited to 'core-stubs-mini/src/java/lang/reflect/Array.java')
-rw-r--r--core-stubs-mini/src/java/lang/reflect/Array.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/core-stubs-mini/src/java/lang/reflect/Array.java b/core-stubs-mini/src/java/lang/reflect/Array.java
new file mode 100644
index 0000000..3fd80a0
--- /dev/null
+++ b/core-stubs-mini/src/java/lang/reflect/Array.java
@@ -0,0 +1,26 @@
+package java.lang.reflect;
+public final class Array
+{
+Array() { throw new RuntimeException("Stub!"); }
+public static java.lang.Object get(java.lang.Object array, int index) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static boolean getBoolean(java.lang.Object array, int index) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static byte getByte(java.lang.Object array, int index) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static char getChar(java.lang.Object array, int index) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static double getDouble(java.lang.Object array, int index) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static float getFloat(java.lang.Object array, int index) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static int getInt(java.lang.Object array, int index) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static int getLength(java.lang.Object array) { throw new RuntimeException("Stub!"); }
+public static long getLong(java.lang.Object array, int index) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static short getShort(java.lang.Object array, int index) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static java.lang.Object newInstance(java.lang.Class<?> componentType, int... dimensions) throws java.lang.NegativeArraySizeException, java.lang.IllegalArgumentException { throw new RuntimeException("Stub!"); }
+public static java.lang.Object newInstance(java.lang.Class<?> componentType, int size) throws java.lang.NegativeArraySizeException { throw new RuntimeException("Stub!"); }
+public static void set(java.lang.Object array, int index, java.lang.Object value) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static void setBoolean(java.lang.Object array, int index, boolean value) { throw new RuntimeException("Stub!"); }
+public static void setByte(java.lang.Object array, int index, byte value) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static void setChar(java.lang.Object array, int index, char value) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static void setDouble(java.lang.Object array, int index, double value) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static void setFloat(java.lang.Object array, int index, float value) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static void setInt(java.lang.Object array, int index, int value) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static void setLong(java.lang.Object array, int index, long value) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+public static void setShort(java.lang.Object array, int index, short value) throws java.lang.IllegalArgumentException, java.lang.ArrayIndexOutOfBoundsException { throw new RuntimeException("Stub!"); }
+}