1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-12-12 14:01:08 +01:00

Enable trailing whitespace checkstyle check

for all source code regions, including javadoc.
This commit is contained in:
Florian Schmaus 2018-05-09 23:06:12 +02:00
parent 9d61a6de7d
commit e8923b9d16
545 changed files with 3713 additions and 3715 deletions

View file

@ -21,7 +21,7 @@ import org.jivesoftware.smack.util.stringencoder.Base64;
/**
* Bits of Binary data class.
*
*
* @author Fernando Ramirez
* @author Florian Schmaus
* @see <a href="http://xmpp.org/extensions/xep-0231.html">XEP-0231: Bits of
@ -41,7 +41,7 @@ public class BoBData {
/**
* BoB data constructor.
*
*
* @param type
* @param content
* @param maxAge
@ -64,7 +64,7 @@ public class BoBData {
/**
* Get the max age.
*
*
* @return the max age
*/
public int getMaxAge() {
@ -73,7 +73,7 @@ public class BoBData {
/**
* Get the type.
*
*
* @return the type
*/
public String getType() {
@ -89,7 +89,7 @@ public class BoBData {
/**
* Get the content.
*
*
* @return the content
*/
public byte[] getContent() {
@ -99,7 +99,7 @@ public class BoBData {
/**
* Get the content in a Base64 encoded String.
*
*
* @return the content in a Base64 encoded String
*/
public String getContentBase64Encoded() {

View file

@ -20,7 +20,7 @@ import org.jivesoftware.smack.util.StringUtils;
/**
* Bits of Binary hash class.
*
*
* @author Fernando Ramirez
* @author Florian Schmaus
* @see <a href="http://xmpp.org/extensions/xep-0231.html">XEP-0231: Bits of
@ -34,7 +34,7 @@ public class BoBHash {
/**
* BoB hash constructor.
*
*
* @param hash
* @param hashType
*/
@ -46,7 +46,7 @@ public class BoBHash {
/**
* Get the hash.
*
*
* @return the hash
*/
public String getHash() {
@ -55,7 +55,7 @@ public class BoBHash {
/**
* Get the hash type.
*
*
* @return the hash type
*/
public String getHashType() {
@ -64,7 +64,7 @@ public class BoBHash {
/**
* BoB hash to src attribute string.
*
*
* @return src attribute string
*/
public String toSrc() {
@ -73,7 +73,7 @@ public class BoBHash {
/**
* BoB hash to cid attribute string.
*
*
* @return cid attribute string
*/
public String getCid() {
@ -96,7 +96,7 @@ public class BoBHash {
/**
* Get BoB hash from src attribute string.
*
*
* @param src
* @return the BoB hash
*/
@ -108,7 +108,7 @@ public class BoBHash {
/**
* Get BoB hash from cid attribute string.
*
*
* @param cid
* @return the BoB hash
*/

View file

@ -44,7 +44,7 @@ import org.jxmpp.util.cache.LruCache;
/**
* Bits of Binary manager class.
*
*
* @author Fernando Ramirez
* @author Florian Schmaus
* @see <a href="http://xmpp.org/extensions/xep-0231.html">XEP-0231: Bits of
@ -67,7 +67,7 @@ public final class BoBManager extends Manager {
/**
* Get the singleton instance of BoBManager.
*
*
* @param connection
* @return the instance of BoBManager
*/
@ -113,7 +113,7 @@ public final class BoBManager extends Manager {
/**
* Returns true if Bits of Binary is supported by the server.
*
*
* @return true if Bits of Binary is supported by the server.
* @throws NoResponseException
* @throws XMPPErrorException
@ -127,7 +127,7 @@ public final class BoBManager extends Manager {
/**
* Request BoB data.
*
*
* @param to
* @param bobHash
* @return the BoB data

View file

@ -25,7 +25,7 @@ import org.jivesoftware.smackx.xhtmlim.packet.XHTMLExtension;
/**
* Bits of Binary extension element.
*
*
* @author Fernando Ramirez
* @see <a href="http://xmpp.org/extensions/xep-0231.html">XEP-0231: Bits of
* Binary</a>
@ -38,7 +38,7 @@ public class BoBExtension extends XHTMLExtension {
/**
* Bits of Binary extension constructor.
*
*
* @param bobHash
* @param alt
* @param paragraph
@ -51,7 +51,7 @@ public class BoBExtension extends XHTMLExtension {
/**
* Get the BoB hash.
*
*
* @return the BoB hash
*/
public BoBHash getBoBHash() {
@ -60,7 +60,7 @@ public class BoBExtension extends XHTMLExtension {
/**
* Get the alt field.
*
*
* @return the alt field
*/
public String getAlt() {

View file

@ -24,7 +24,7 @@ import org.jivesoftware.smackx.bob.BoBManager;
/**
* Bits of Binary IQ class.
*
*
* @author Fernando Ramirez
* @see <a href="http://xmpp.org/extensions/xep-0231.html">XEP-0231: Bits of
* Binary</a>
@ -46,7 +46,7 @@ public class BoBIQ extends IQ {
/**
* Bits of Binary IQ constructor.
*
*
* @param bobHash
* @param bobData
*/
@ -58,7 +58,7 @@ public class BoBIQ extends IQ {
/**
* Bits of Binary IQ constructor.
*
*
* @param bobHash
*/
public BoBIQ(BoBHash bobHash) {
@ -67,7 +67,7 @@ public class BoBIQ extends IQ {
/**
* Get the BoB hash.
*
*
* @return the BoB hash
*/
public BoBHash getBoBHash() {
@ -76,7 +76,7 @@ public class BoBIQ extends IQ {
/**
* Get the BoB data.
*
*
* @return the BoB data
*/
public BoBData getBoBData() {

View file

@ -16,7 +16,7 @@
*/
/**
* Bits of Binary elements.
*
*
* @author Fernando Ramirez
* @see <a href="http://xmpp.org/extensions/xep-0231.html">XEP-0231: Bits of
* Binary</a>

View file

@ -16,7 +16,7 @@
*/
/**
* Classes and interfaces of XEP-0231: Bits of Binary.
*
*
* @author Fernando Ramirez
* @see <a href="http://xmpp.org/extensions/xep-0231.html">XEP-0231: Bits of
* Binary</a>

View file

@ -27,7 +27,7 @@ import org.xmlpull.v1.XmlPullParser;
/**
* Bits of Binary IQ provider class.
*
*
* @author Florian Schmaus
* @see <a href="http://xmpp.org/extensions/xep-0231.html">XEP-0231: Bits of
* Binary</a>

View file

@ -16,7 +16,7 @@
*/
/**
* Bits of Binary providers.
*
*
* @author Fernando Ramirez
* @see <a href="http://xmpp.org/extensions/xep-0231.html">XEP-0231: Bits of
* Binary</a>