diff options
author | Michael Koch <konqueror@gmx.de> | 2003-03-10 14:48:09 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-03-10 14:48:09 +0000 |
commit | 1f5f81da4e3b9f47f2edcec098933237788ed73d (patch) | |
tree | 96d1410c67a72ad918a62d2f4e97cbd662dda0f0 /libjava/java/net/MulticastSocket.java | |
parent | 4c5154c0c601dacfac9cff1d297ab692fe4f85ea (diff) | |
download | gcc-1f5f81da4e3b9f47f2edcec098933237788ed73d.zip gcc-1f5f81da4e3b9f47f2edcec098933237788ed73d.tar.gz gcc-1f5f81da4e3b9f47f2edcec098933237788ed73d.tar.bz2 |
DatagramSocket.java, [...]: Fixed some documentation tags to make javadoc and friends happy.
2003-03-10 Michael Koch <konqueror@gmx.de>
* java/net/DatagramSocket.java,
java/net/MulticastSocket.java,
java/net/Socket.java,
java/net/URL.java,
java/net/URLConnection.java:
Fixed some documentation tags to make javadoc and friends happy.
From-SVN: r64083
Diffstat (limited to 'libjava/java/net/MulticastSocket.java')
-rw-r--r-- | libjava/java/net/MulticastSocket.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libjava/java/net/MulticastSocket.java b/libjava/java/net/MulticastSocket.java index 481c8e3..a6dca94 100644 --- a/libjava/java/net/MulticastSocket.java +++ b/libjava/java/net/MulticastSocket.java @@ -136,7 +136,7 @@ public class MulticastSocket extends DatagramSocket * * @deprecated 1.2 Replaced by getTimeToLive() * - * @see Multicastsocket:getTimeToLive + * @see MulticastSocket#getTimeToLive() */ public byte getTTL() throws IOException { @@ -182,7 +182,7 @@ public class MulticastSocket extends DatagramSocket * * @exception SocketException If an error occurs * - * @see MulticastSocket:getNetworkInterface + * @see MulticastSocket#getNetworkInterface() * * @since 1.4 */ @@ -209,7 +209,7 @@ public class MulticastSocket extends DatagramSocket * * @exception SocketException If an error occurs * - * @see MulticastSocket:setNetworkInterface + * @see MulticastSocket#setNetworkInterface(NetworkInterface netIf) * * @since 1.4 */ @@ -277,7 +277,7 @@ public class MulticastSocket extends DatagramSocket * * @deprecated 1.2 Replaced by <code>setTimeToLive</code> * - * @see MulticastSocket:setTimeToLive + * @see MulticastSocket#setTimeToLive(int ttl) */ public void setTTL(byte ttl) throws IOException { @@ -360,8 +360,8 @@ public class MulticastSocket extends DatagramSocket * @exception SecurityException If a security manager exists and its * checkMulticast method doesn't allow the operation * - * @see MulticastSocket:setInterface - * @see MulticastSocket:setNetworkInterface + * @see MulticastSocket#setInterface(InetAddress addr) + * @see MulticastSocket#setNetworkInterface(NetworkInterface netIf) * * @since 1.4 */ @@ -395,8 +395,8 @@ public class MulticastSocket extends DatagramSocket * @exception SecurityException If a security manager exists and its * checkMulticast method doesn't allow the operation * - * @see MulticastSocket:setInterface - * @see MulticastSocket:setNetworkInterface + * @see MulticastSocket#setInterface(InetAddress addr) + * @see MulticastSocket#setNetworkInterface(NetworkInterface netIf) * * @since 1.4 */ |