From 7423a62429ca27fd1c5c9533e0703c5a2967aa04 Mon Sep 17 00:00:00 2001 From: Matt Tucker Date: Fri, 3 Oct 2003 00:31:29 +0000 Subject: [PATCH] Improved Javadocs. git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2127 b35dd754-fafc-0310-a699-88a17e54d16e --- source/org/jivesoftware/smack/Roster.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source/org/jivesoftware/smack/Roster.java b/source/org/jivesoftware/smack/Roster.java index 2d7a3e2b3..2536c034f 100644 --- a/source/org/jivesoftware/smack/Roster.java +++ b/source/org/jivesoftware/smack/Roster.java @@ -131,6 +131,10 @@ public class Roster { /** * Returns the subscription processing mode, which dictates what action * Smack will take when subscription requests from other users are made. + * The default subscription mode is {@link #SUBCRIPTION_ACCEPT_ALL}.

+ * + * If using the manual mode, a PacketListener should be registered that + * listens for Presence packets that have a type of {@link Presence.Type#SUBSCRIBE}. * * @return the subscription mode. */ @@ -141,6 +145,10 @@ public class Roster { /** * Sets the subscription processing mode, which dictates what action * Smack will take when subscription requests from other users are made. + * The default subscription mode is {@link #SUBCRIPTION_ACCEPT_ALL}.

+ * + * If using the manual mode, a PacketListener should be registered that + * listens for Presence packets that have a type of {@link Presence.Type#SUBSCRIBE}. * * @param subscriptionMode the subscription mode. */