コード例 #1
0
 /** {@inheritDoc} */
 @Override
 protected ObjectStreamClass readClassDescriptor() throws IOException, ClassNotFoundException {
   // We must use lookupAny because not all classes can be Serializable.
   return ObjectStreamClass.lookupAny(readClass());
 }
コード例 #2
0
 /** {@inheritDoc} */
 @Override
 protected void writeClassDescriptor(ObjectStreamClass desc) throws IOException {
   writeClass(desc.forClass());
 }
コード例 #3
0
 /** {@inheritDoc} */
 @Override
 protected Class<?> resolveClass(ObjectStreamClass desc)
     throws IOException, ClassNotFoundException {
   return desc.forClass();
 }