mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-12-13 06:21:08 +01:00
Enable trailing whitespace checkstyle check
for all source code regions, including javadoc.
This commit is contained in:
parent
9d61a6de7d
commit
e8923b9d16
545 changed files with 3713 additions and 3715 deletions
|
|
@ -46,7 +46,7 @@ import org.jxmpp.jid.Jid;
|
|||
|
||||
/**
|
||||
* Blocking command manager class.
|
||||
*
|
||||
*
|
||||
* @author Fernando Ramirez
|
||||
* @author Florian Schmaus
|
||||
* @see <a href="http://xmpp.org/extensions/xep-0191.html">XEP-0191: Blocking
|
||||
|
|
@ -159,7 +159,7 @@ public final class BlockingCommandManager extends Manager {
|
|||
|
||||
/**
|
||||
* Returns true if Blocking Command is supported by the server.
|
||||
*
|
||||
*
|
||||
* @return true if Blocking Command is supported by the server.
|
||||
* @throws NoResponseException
|
||||
* @throws XMPPErrorException
|
||||
|
|
@ -173,7 +173,7 @@ public final class BlockingCommandManager extends Manager {
|
|||
|
||||
/**
|
||||
* Returns the block list.
|
||||
*
|
||||
*
|
||||
* @return the blocking list
|
||||
* @throws NoResponseException
|
||||
* @throws XMPPErrorException
|
||||
|
|
@ -194,7 +194,7 @@ public final class BlockingCommandManager extends Manager {
|
|||
|
||||
/**
|
||||
* Block contacts.
|
||||
*
|
||||
*
|
||||
* @param jids
|
||||
* @throws NoResponseException
|
||||
* @throws XMPPErrorException
|
||||
|
|
@ -209,7 +209,7 @@ public final class BlockingCommandManager extends Manager {
|
|||
|
||||
/**
|
||||
* Unblock contacts.
|
||||
*
|
||||
*
|
||||
* @param jids
|
||||
* @throws NoResponseException
|
||||
* @throws XMPPErrorException
|
||||
|
|
@ -224,7 +224,7 @@ public final class BlockingCommandManager extends Manager {
|
|||
|
||||
/**
|
||||
* Unblock all.
|
||||
*
|
||||
*
|
||||
* @throws NoResponseException
|
||||
* @throws XMPPErrorException
|
||||
* @throws NotConnectedException
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ import org.jxmpp.jid.Jid;
|
|||
|
||||
/**
|
||||
* Block contact IQ class.
|
||||
*
|
||||
*
|
||||
* @author Fernando Ramirez
|
||||
* @see <a href="http://xmpp.org/extensions/xep-0191.html">XEP-0191: Blocking
|
||||
* Command</a>
|
||||
|
|
@ -48,7 +48,7 @@ public class BlockContactsIQ extends IQ {
|
|||
|
||||
/**
|
||||
* Block list IQ constructor.
|
||||
*
|
||||
*
|
||||
* @param jids
|
||||
*/
|
||||
public BlockContactsIQ(List<Jid> jids) {
|
||||
|
|
@ -59,7 +59,7 @@ public class BlockContactsIQ extends IQ {
|
|||
|
||||
/**
|
||||
* Get the JID.
|
||||
*
|
||||
*
|
||||
* @return the list of JIDs
|
||||
*/
|
||||
public List<Jid> getJids() {
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ import org.jxmpp.jid.Jid;
|
|||
|
||||
/**
|
||||
* Block list IQ class.
|
||||
*
|
||||
*
|
||||
* @author Fernando Ramirez
|
||||
* @see <a href="http://xmpp.org/extensions/xep-0191.html">XEP-0191: Blocking
|
||||
* Command</a>
|
||||
|
|
@ -49,7 +49,7 @@ public class BlockListIQ extends IQ {
|
|||
|
||||
/**
|
||||
* Block list IQ constructor.
|
||||
*
|
||||
*
|
||||
* @param jids
|
||||
*/
|
||||
public BlockListIQ(List<Jid> jids) {
|
||||
|
|
@ -70,7 +70,7 @@ public class BlockListIQ extends IQ {
|
|||
|
||||
/**
|
||||
* Get the JIDs as unmodifiable list.
|
||||
*
|
||||
*
|
||||
* @return the blocked JIDs
|
||||
*/
|
||||
public List<Jid> getBlockedJids() {
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ import org.jivesoftware.smackx.blocking.BlockingCommandManager;
|
|||
|
||||
/**
|
||||
* Blocked error extension class.
|
||||
*
|
||||
*
|
||||
* @author Fernando Ramirez
|
||||
* @see <a href="http://xmpp.org/extensions/xep-0191.html">XEP-0191: Blocking
|
||||
* Command</a>
|
||||
|
|
@ -64,7 +64,7 @@ public class BlockedErrorExtension implements ExtensionElement {
|
|||
* Check if a message contains a BlockedErrorExtension, which means that a
|
||||
* message was blocked because the JID blocked the sender, and that was
|
||||
* reflected back as an error message.
|
||||
*
|
||||
*
|
||||
* @param message
|
||||
* @return true if the message contains a BlockedErrorExtension, false if
|
||||
* not
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ import org.jxmpp.jid.Jid;
|
|||
|
||||
/**
|
||||
* Unblock contact IQ class.
|
||||
*
|
||||
*
|
||||
* @author Fernando Ramirez
|
||||
* @author Florian Schmaus
|
||||
* @see <a href="http://xmpp.org/extensions/xep-0191.html">XEP-0191: Blocking
|
||||
|
|
@ -49,7 +49,7 @@ public class UnblockContactsIQ extends IQ {
|
|||
|
||||
/**
|
||||
* Unblock contacts IQ constructor.
|
||||
*
|
||||
*
|
||||
* @param jids
|
||||
*/
|
||||
public UnblockContactsIQ(List<Jid> jids) {
|
||||
|
|
@ -63,7 +63,7 @@ public class UnblockContactsIQ extends IQ {
|
|||
}
|
||||
|
||||
/**
|
||||
* Constructs a new unblock IQ which will unblock <b>all</b> JIDs.
|
||||
* Constructs a new unblock IQ which will unblock <b>all</b> JIDs.
|
||||
*/
|
||||
public UnblockContactsIQ() {
|
||||
this(null);
|
||||
|
|
@ -71,7 +71,7 @@ public class UnblockContactsIQ extends IQ {
|
|||
|
||||
/**
|
||||
* Get the JIDs. This may return null, which means that all JIDs should be or where unblocked.
|
||||
*
|
||||
*
|
||||
* @return the list of JIDs or <code>null</code>.
|
||||
*/
|
||||
public List<Jid> getJids() {
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
*/
|
||||
/**
|
||||
* Blocking command elements.
|
||||
*
|
||||
*
|
||||
* @author Fernando Ramirez
|
||||
* @see <a href="http://xmpp.org/extensions/xep-0191.html">XEP-0191: Blocking
|
||||
* Command</a>
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
*/
|
||||
/**
|
||||
* Classes and interfaces of Blocking command.
|
||||
*
|
||||
*
|
||||
* @author Fernando Ramirez
|
||||
* @see <a href="http://xmpp.org/extensions/xep-0191.html">XEP-0191: Blocking
|
||||
* Command</a>
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ import org.xmlpull.v1.XmlPullParser;
|
|||
|
||||
/**
|
||||
* Block contact IQ provider class.
|
||||
*
|
||||
*
|
||||
* @author Fernando Ramirez
|
||||
* @see <a href="http://xmpp.org/extensions/xep-0191.html">XEP-0191: Blocking
|
||||
* Command</a>
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ import org.xmlpull.v1.XmlPullParser;
|
|||
|
||||
/**
|
||||
* Block list IQ provider class.
|
||||
*
|
||||
*
|
||||
* @author Fernando Ramirez
|
||||
* @see <a href="http://xmpp.org/extensions/xep-0191.html">XEP-0191: Blocking
|
||||
* Command</a>
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ import org.xmlpull.v1.XmlPullParser;
|
|||
|
||||
/**
|
||||
* Blocked error extension class.
|
||||
*
|
||||
*
|
||||
* @author Fernando Ramirez
|
||||
* @see <a href="http://xmpp.org/extensions/xep-0191.html">XEP-0191: Blocking
|
||||
* Command</a>
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ import org.xmlpull.v1.XmlPullParser;
|
|||
|
||||
/**
|
||||
* Unblock contact IQ provider class.
|
||||
*
|
||||
*
|
||||
* @author Fernando Ramirez
|
||||
* @see <a href="http://xmpp.org/extensions/xep-0191.html">XEP-0191: Blocking
|
||||
* Command</a>
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
*/
|
||||
/**
|
||||
* Blocking command providers.
|
||||
*
|
||||
*
|
||||
* @author Fernando Ramirez
|
||||
* @see <a href="http://xmpp.org/extensions/xep-0191.html">XEP-0191: Blocking
|
||||
* Command</a>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue