mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-26 14:02:06 +01:00
Improve Packet javadoc
This commit is contained in:
parent
6b21455b32
commit
b73bb27463
1 changed files with 7 additions and 1 deletions
|
@ -32,8 +32,14 @@ import java.util.Map;
|
||||||
import java.util.concurrent.atomic.AtomicLong;
|
import java.util.concurrent.atomic.AtomicLong;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base class for XMPP packets. Every packet has a unique ID (which is automatically
|
* Base class for XMPP Stanzas, which are called packets in Smack.
|
||||||
|
* <p>
|
||||||
|
* Every packet has a unique ID (which is automatically
|
||||||
* generated, but can be overridden). Optionally, the "to" and "from" fields can be set.
|
* generated, but can be overridden). Optionally, the "to" and "from" fields can be set.
|
||||||
|
* </p>
|
||||||
|
* <p>
|
||||||
|
* XMPP Stanzas are {@link Message}, {@link IQ} and {@link Presence}. Which therefore subclass this class.
|
||||||
|
* </p>
|
||||||
*
|
*
|
||||||
* @author Matt Tucker
|
* @author Matt Tucker
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue