当前页面:
在线文档首页 >
JDK 5 Documentation v1.2.2, Java 2 SDK 英文文档
Java Object Serialization Specification: 3 - Object Input Classes - JDK 5 Documentation v1.2.2, Java 2 SDK 英文文档
This interface allows an object to be called when a complete graph of objects has been deserialized. If the object cannot be made valid, it should throw the InvalidObjectException. Any exception that occurs during a call to validateObject will terminate the validation process, and the InvalidObjectException will be thrown.
package java.io;
public interface ObjectInputValidation
{
public void validateObject()
throws InvalidObjectException;
}
CONTENTS |
PREV
|
NEXT
Copyright © 1997-1998 Sun Microsystems, Inc. All Rights Reserved.