/[classpath]/classpath/java/io/Externalizable.java
ViewVC logotype

Diff of /classpath/java/io/Externalizable.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.11 by mkoch, Sun Mar 23 10:53:29 2003 UTC revision 1.12 by mkoch, Sun Oct 12 15:49:19 2003 UTC
# Line 60  package java.io; Line 60  package java.io;
60   */   */
61  public interface Externalizable extends Serializable  public interface Externalizable extends Serializable
62  {  {
63    static final long serialVersionUID = -282491828744381764L;    long serialVersionUID = -282491828744381764L;
64    
65    /**    /**
66     * This method restores an object's state by reading in the instance data     * This method restores an object's state by reading in the instance data
# Line 86  public interface Externalizable extends Line 86  public interface Externalizable extends
86     * restored cannot be found     * restored cannot be found
87     * @exception IOException If any other error occurs     * @exception IOException If any other error occurs
88     */     */
89    public abstract void readExternal(ObjectInput in)    void readExternal(ObjectInput in)
90      throws ClassNotFoundException, IOException;      throws ClassNotFoundException, IOException;
91    
92    /**    /**
# Line 105  public interface Externalizable extends Line 105  public interface Externalizable extends
105     *     *
106     * @exception IOException If an error occurs     * @exception IOException If an error occurs
107     */     */
108    public abstract void writeExternal(ObjectOutput out) throws IOException;    void writeExternal(ObjectOutput out) throws IOException;
109    }
 } // interface Externalizable  
   

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26