Home | History | Annotate | Download | only in io

Lines Matching refs:theClass

1309      * Write object {@code object} of class {@code theClass} into
1322 * @param theClass
1332 private int writeNewObject(Object object, Class<?> theClass, ObjectStreamClass clDesc,
1344 throw new NotSerializableException(theClass.getName());
1709 private int writeNewEnum(Object object, Class<?> theClass, boolean unshared) throws IOException {
1716 while (theClass != null && !theClass.isEnum()) {
1718 theClass = theClass.getSuperclass();
1720 ObjectStreamClass classDesc = ObjectStreamClass.lookup(theClass);