blob: 984d610b6f3af803fe1a5516822fa8fb70ae5593 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package java.io;
public class ObjectStreamClass
implements java.io.Serializable
{
ObjectStreamClass() { throw new RuntimeException("Stub!"); }
public java.lang.Class<?> forClass() { throw new RuntimeException("Stub!"); }
public java.io.ObjectStreamField getField(java.lang.String name) { throw new RuntimeException("Stub!"); }
public java.io.ObjectStreamField[] getFields() { throw new RuntimeException("Stub!"); }
public java.lang.String getName() { throw new RuntimeException("Stub!"); }
public long getSerialVersionUID() { throw new RuntimeException("Stub!"); }
public static java.io.ObjectStreamClass lookup(java.lang.Class<?> cl) { throw new RuntimeException("Stub!"); }
public static java.io.ObjectStreamClass lookupAny(java.lang.Class<?> cl) { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
public static final java.io.ObjectStreamField[] NO_FIELDS = null;
}
|