diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-26 10:11:45 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-26 10:11:45 +0000 |
commit | 397b0f0469a46fcb94e0a365b7f2be2e59941fb6 (patch) | |
tree | b6c7843b5283beca927e0f97f178eb4b820ba933 /libjava/java/net | |
parent | 103d4f7ef5450498c740097e380669ce1daa2f34 (diff) | |
download | ppe42-gcc-397b0f0469a46fcb94e0a365b7f2be2e59941fb6.tar.gz ppe42-gcc-397b0f0469a46fcb94e0a365b7f2be2e59941fb6.zip |
2003-11-26 Michael Koch <konqueror@gmx.de>
* java/net/DatagramPacket.java
(DatagramPacket): Fixed documentation to become legal HTML.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73944 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/net')
-rw-r--r-- | libjava/java/net/DatagramPacket.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libjava/java/net/DatagramPacket.java b/libjava/java/net/DatagramPacket.java index 7ca6c51a22b..f9a9cd5aef5 100644 --- a/libjava/java/net/DatagramPacket.java +++ b/libjava/java/net/DatagramPacket.java @@ -128,7 +128,7 @@ public final class DatagramPacket * receiving packets from the network. * * @param buf A buffer for storing the returned packet data - * @param length The length of the buffer (must be <= buf.length) + * @param length The length of the buffer (must be <= buf.length) */ public DatagramPacket(byte[] buf, int length) { @@ -141,7 +141,7 @@ public final class DatagramPacket * * @param buf A buffer containing the data to send * @param offset The offset into the buffer to start writing from. - * @param len The length of the buffer (must be <= buf.length) + * @param len The length of the buffer (must be <= buf.length) * @param addr The address to send to * @param port The port to send to * @@ -176,7 +176,7 @@ public final class DatagramPacket * transmitting packets across the network. * * @param buf A buffer containing the data to send - * @param length The length of the buffer (must be <= buf.length) + * @param length The length of the buffer (must be <= buf.length) * @param address The address to send to * @param port The port to send to */ @@ -191,7 +191,7 @@ public final class DatagramPacket * * @param buf A buffer containing the data to send * @param offset The offset into the buffer to start writing from. - * @param length The length of the buffer (must be <= buf.length) + * @param length The length of the buffer (must be <= buf.length) * @param address The socket address to send to * * @exception SocketException If an error occurs @@ -212,7 +212,7 @@ public final class DatagramPacket * transmitting packets across the network. * * @param buf A buffer containing the data to send - * @param length The length of the buffer (must be <= buf.length) + * @param length The length of the buffer (must be <= buf.length) * @param address The socket address to send to * * @exception SocketException If an error occurs |