From 49c3c980cae97f2a0727bf4233f4d565ba8d108f Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Tue, 27 Aug 2002 17:47:27 +0000 Subject: BindException.java, [...]: add/update of some @since/@deprecated 2002-08-27 Michael Koch * java/net/BindException.java, java/net/JarURLConnection.java, java/net/FileNameMap.java, java/net/HttpURLConnection.java, java/net/InetSocketAddress.java, java/net/DatagramPacket.java, java/net/DatagramSocket.java, java/net/DatagramSocketImpl.java, java/net/MulticastSocket.java, java/net/PasswordAuthentication.java, java/net/ServerSocket.java, java/net/Socket.java, java/net/URLClassLoader.java, java/net/URLConnection.java: add/update of some @since/@deprecated From-SVN: r56608 --- libjava/java/net/ServerSocket.java | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'libjava/java/net/ServerSocket.java') diff --git a/libjava/java/net/ServerSocket.java b/libjava/java/net/ServerSocket.java index f383c44..788057d 100644 --- a/libjava/java/net/ServerSocket.java +++ b/libjava/java/net/ServerSocket.java @@ -129,6 +129,8 @@ public class ServerSocket * @param bindAddr The address to bind to, or null to bind to all addresses * * @exception IOException If an error occurs + * + * @since 1.1 */ public ServerSocket (int port, int backlog, InetAddress bindAddr) throws java.io.IOException @@ -192,6 +194,8 @@ public class ServerSocket * @param socket The socket that is used for the accepted connection * * @exception IOException If an error occurs + * + * @since 1.1 */ protected final void implAccept (Socket s) throws IOException { @@ -217,6 +221,8 @@ public class ServerSocket * @param timeout The new SO_TIMEOUT value * * @exception IOException If an error occurs + * + * @since 1.1 */ public void setSoTimeout (int timeout) throws SocketException { @@ -235,6 +241,8 @@ public class ServerSocket * @return The value of SO_TIMEOUT * * @exception IOException If an error occurs + * + * @since 1.1 */ public int getSoTimeout () throws IOException { -- cgit v1.1