blob: 54523d3c83144a6c1b679dfffe7462bd57373251 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package java.io;
public class ObjectStreamField
implements java.lang.Comparable<java.lang.Object>
{
public ObjectStreamField(java.lang.String name, java.lang.Class<?> cl) { throw new RuntimeException("Stub!"); }
public ObjectStreamField(java.lang.String name, java.lang.Class<?> cl, boolean unshared) { throw new RuntimeException("Stub!"); }
public int compareTo(java.lang.Object o) { throw new RuntimeException("Stub!"); }
public java.lang.String getName() { throw new RuntimeException("Stub!"); }
public int getOffset() { throw new RuntimeException("Stub!"); }
public java.lang.Class<?> getType() { throw new RuntimeException("Stub!"); }
public char getTypeCode() { throw new RuntimeException("Stub!"); }
public java.lang.String getTypeString() { throw new RuntimeException("Stub!"); }
public boolean isPrimitive() { throw new RuntimeException("Stub!"); }
protected void setOffset(int newValue) { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
public boolean isUnshared() { throw new RuntimeException("Stub!"); }
}
|