Fix Packet's javadoc

ID_NOT_AVAILABLE was removed in
8b16c49a31
This commit is contained in:
Florian Schmaus 2015-01-19 14:04:05 +01:00
parent 8409dddffd
commit 4a5732d679
1 changed files with 3 additions and 4 deletions

View File

@ -102,10 +102,9 @@ public abstract class Packet implements TopLevelStreamElement {
} }
/** /**
* Returns the unique ID of the packet. The returned value could be <tt>null</tt> when * Returns the unique ID of the packet. The returned value could be <code>null</code>.
* ID_NOT_AVAILABLE was set as the packet's id.
* *
* @return the packet's unique ID or <tt>null</tt> if the packet's id is not available. * @return the packet's unique ID or <code>null</code> if the packet's id is not available.
*/ */
public String getPacketID() { public String getPacketID() {
return packetID; return packetID;
@ -113,7 +112,7 @@ public abstract class Packet implements TopLevelStreamElement {
/** /**
* Sets the unique ID of the packet. To indicate that a packet has no id * Sets the unique ID of the packet. To indicate that a packet has no id
* pass the constant ID_NOT_AVAILABLE as the packet's id value. * pass <code>null</code> as the packet's id value.
* *
* @param packetID the unique ID for the packet. * @param packetID the unique ID for the packet.
*/ */