summaryrefslogtreecommitdiffstats
path: root/core-stubs-mini/src/java/io/ObjectStreamConstants.java
diff options
context:
space:
mode:
authorJean-Marie Henaff <jmhenaff@google.com>2015-01-13 16:12:49 +0100
committerJean-Marie Henaff <jmhenaff@google.com>2015-01-21 11:44:41 +0100
commit52e9b2d18a46745d7bcc21171cbf396412892df7 (patch)
tree3ea8b3efedcaff83a52441af7494cc4d34604243 /core-stubs-mini/src/java/io/ObjectStreamConstants.java
parent2a479db06ca6c3a01e4d927bd0c770543beb686d (diff)
downloadtoolchain_jack-52e9b2d18a46745d7bcc21171cbf396412892df7.tar.gz
toolchain_jack-52e9b2d18a46745d7bcc21171cbf396412892df7.tar.bz2
toolchain_jack-52e9b2d18a46745d7bcc21171cbf396412892df7.zip
Make ant task to build junit4 with jack for tests
Change-Id: Ie4f49fb6259e39c8515a71ebbe61c17e3da65abf
Diffstat (limited to 'core-stubs-mini/src/java/io/ObjectStreamConstants.java')
-rw-r--r--core-stubs-mini/src/java/io/ObjectStreamConstants.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/core-stubs-mini/src/java/io/ObjectStreamConstants.java b/core-stubs-mini/src/java/io/ObjectStreamConstants.java
new file mode 100644
index 00000000..37b610ea
--- /dev/null
+++ b/core-stubs-mini/src/java/io/ObjectStreamConstants.java
@@ -0,0 +1,33 @@
+package java.io;
+public interface ObjectStreamConstants
+{
+public static final int PROTOCOL_VERSION_1 = 1;
+public static final int PROTOCOL_VERSION_2 = 2;
+public static final byte SC_BLOCK_DATA = 8;
+public static final byte SC_ENUM = 16;
+public static final byte SC_EXTERNALIZABLE = 4;
+public static final byte SC_SERIALIZABLE = 2;
+public static final byte SC_WRITE_METHOD = 1;
+public static final short STREAM_MAGIC = -21267;
+public static final short STREAM_VERSION = 5;
+public static final java.io.SerializablePermission SUBCLASS_IMPLEMENTATION_PERMISSION = null;
+public static final java.io.SerializablePermission SUBSTITUTION_PERMISSION = null;
+public static final byte TC_ARRAY = 117;
+public static final byte TC_BASE = 112;
+public static final byte TC_BLOCKDATA = 119;
+public static final byte TC_BLOCKDATALONG = 122;
+public static final byte TC_CLASS = 118;
+public static final byte TC_CLASSDESC = 114;
+public static final byte TC_ENDBLOCKDATA = 120;
+public static final byte TC_ENUM = 126;
+public static final byte TC_EXCEPTION = 123;
+public static final byte TC_LONGSTRING = 124;
+public static final byte TC_MAX = 126;
+public static final byte TC_NULL = 112;
+public static final byte TC_OBJECT = 115;
+public static final byte TC_PROXYCLASSDESC = 125;
+public static final byte TC_REFERENCE = 113;
+public static final byte TC_RESET = 121;
+public static final byte TC_STRING = 116;
+public static final int baseWireHandle = 8257536;
+}