package java.io; public class ObjectStreamField implements java.lang.Comparable { 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!"); } }