home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Pro 1999 April
/
DPPCPRO0499.ISO
/
April
/
Notes
/
50b2wic.exe
/
DATA1.CAB
/
NotesProgramFilesJavaSupport
/
rt.jar
/
java
/
io
/
ObjectOutput.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1998-04-23
|
436 b
|
16 lines
package java.io;
public interface ObjectOutput extends DataOutput {
void writeObject(Object var1) throws IOException;
void write(int var1) throws IOException;
void write(byte[] var1) throws IOException;
void write(byte[] var1, int var2, int var3) throws IOException;
void flush() throws IOException;
void close() throws IOException;
}