Commit e08932b2 by Michael Koch Committed by Michael Koch

2003-11-26 Michael Koch <konqueror@gmx.de>

	* java/net/DatagramPacket.java
	(DatagramPacket): Fixed documentation to become legal HTML.

From-SVN: r73944
parent bb13f2ff
2003-11-26 Michael Koch <konqueror@gmx.de>
* java/net/DatagramPacket.java
(DatagramPacket): Fixed documentation to become legal HTML.
2003-11-25 Michael Koch <konqueror@gmx.de> 2003-11-25 Michael Koch <konqueror@gmx.de>
* gcj/javaprims.h: Added missing java.util.Currency. * gcj/javaprims.h: Added missing java.util.Currency.
......
...@@ -128,7 +128,7 @@ public final class DatagramPacket ...@@ -128,7 +128,7 @@ public final class DatagramPacket
* receiving packets from the network. * receiving packets from the network.
* *
* @param buf A buffer for storing the returned packet data * @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 &lt;= buf.length)
*/ */
public DatagramPacket(byte[] buf, int length) public DatagramPacket(byte[] buf, int length)
{ {
...@@ -141,7 +141,7 @@ public final class DatagramPacket ...@@ -141,7 +141,7 @@ public final class DatagramPacket
* *
* @param buf A buffer containing the data to send * @param buf A buffer containing the data to send
* @param offset The offset into the buffer to start writing from. * @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 &lt;= buf.length)
* @param addr The address to send to * @param addr The address to send to
* @param port The port to send to * @param port The port to send to
* *
...@@ -176,7 +176,7 @@ public final class DatagramPacket ...@@ -176,7 +176,7 @@ public final class DatagramPacket
* transmitting packets across the network. * transmitting packets across the network.
* *
* @param buf A buffer containing the data to send * @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 &lt;= buf.length)
* @param address The address to send to * @param address The address to send to
* @param port The port to send to * @param port The port to send to
*/ */
...@@ -191,7 +191,7 @@ public final class DatagramPacket ...@@ -191,7 +191,7 @@ public final class DatagramPacket
* *
* @param buf A buffer containing the data to send * @param buf A buffer containing the data to send
* @param offset The offset into the buffer to start writing from. * @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 &lt;= buf.length)
* @param address The socket address to send to * @param address The socket address to send to
* *
* @exception SocketException If an error occurs * @exception SocketException If an error occurs
...@@ -212,7 +212,7 @@ public final class DatagramPacket ...@@ -212,7 +212,7 @@ public final class DatagramPacket
* transmitting packets across the network. * transmitting packets across the network.
* *
* @param buf A buffer containing the data to send * @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 &lt;= buf.length)
* @param address The socket address to send to * @param address The socket address to send to
* *
* @exception SocketException If an error occurs * @exception SocketException If an error occurs
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment