diff options
author | Michael Koch <konqueror@gmx.de> | 2005-02-17 18:59:55 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2005-02-17 18:59:55 +0000 |
commit | 51615fd6cd97605e975ead59ca7780bc1bb92805 (patch) | |
tree | 18e200fddb40311b2e5761f514cf25d33edb464f /libjava | |
parent | e6670d1a956641f279870eb1ec7de0a28658c7d8 (diff) | |
download | gcc-51615fd6cd97605e975ead59ca7780bc1bb92805.zip gcc-51615fd6cd97605e975ead59ca7780bc1bb92805.tar.gz gcc-51615fd6cd97605e975ead59ca7780bc1bb92805.tar.bz2 |
2005-02-17 Michael Koch <konqueror@gmx.de>
* gnu/java/net/PlainSocketImpl.java
(shutdownInput): Added javadoc.
(shutdownOutput): Likewise.
From-SVN: r95180
Diffstat (limited to 'libjava')
-rw-r--r-- | libjava/ChangeLog | 6 | ||||
-rw-r--r-- | libjava/gnu/java/net/PlainSocketImpl.java | 14 |
2 files changed, 19 insertions, 1 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 44defcd..a271fd1a 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,5 +1,11 @@ 2005-02-17 Michael Koch <konqueror@gmx.de> + * gnu/java/net/PlainSocketImpl.java + (shutdownInput): Added javadoc. + (shutdownOutput): Likewise. + +2005-02-17 Michael Koch <konqueror@gmx.de> + * javax/print/attribute/standard/Chromaticity.java, javax/print/attribute/standard/Destination.java, javax/print/attribute/standard/MediaPrintableArea.java, diff --git a/libjava/gnu/java/net/PlainSocketImpl.java b/libjava/gnu/java/net/PlainSocketImpl.java index 4301a48..f7e6cb8 100644 --- a/libjava/gnu/java/net/PlainSocketImpl.java +++ b/libjava/gnu/java/net/PlainSocketImpl.java @@ -1,5 +1,5 @@ /* PlainSocketImpl.java -- Default socket implementation - Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 + Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -200,8 +200,20 @@ public final class PlainSocketImpl extends SocketImpl */ public native Object getOption(int optID) throws SocketException; + /** + * Flushes the input stream and closes it. If you read from the input stream + * after calling this method a <code>IOException</code> will be thrown. + * + * @throws IOException if an error occurs + */ public native void shutdownInput() throws IOException; + /** + * Flushes the output stream and closes it. If you write to the output stream + * after calling this method a <code>IOException</code> will be thrown. + * + * @throws IOException if an error occurs + */ public native void shutdownOutput() throws IOException; /** |