mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-16 12:12:06 +01:00
Enable javadoc 'syntax' doclint
Addresses SMACK-650 but does not yet fix it completely.
This commit is contained in:
parent
e5e5fca7c1
commit
89c97bb46c
6 changed files with 7 additions and 7 deletions
|
@ -179,7 +179,7 @@ allprojects {
|
||||||
// work, we extra add '-quiet', which is added anyway by
|
// work, we extra add '-quiet', which is added anyway by
|
||||||
// gradle.
|
// gradle.
|
||||||
// TODO enable all doclints, see SMACK-650
|
// TODO enable all doclints, see SMACK-650
|
||||||
options.addStringOption('Xdoclint:all,-html,-syntax', '-quiet')
|
options.addStringOption('Xdoclint:all,-html', '-quiet')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
tasks.withType(Javadoc) {
|
tasks.withType(Javadoc) {
|
||||||
|
|
|
@ -451,7 +451,7 @@ public interface XMPPConnection {
|
||||||
|
|
||||||
public static enum FromMode {
|
public static enum FromMode {
|
||||||
/**
|
/**
|
||||||
* Leave the 'from' attribute unchanged. This is the behavior of Smack < 4.0
|
* Leave the 'from' attribute unchanged. This is the behavior of Smack < 4.0
|
||||||
*/
|
*/
|
||||||
UNCHANGED,
|
UNCHANGED,
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -23,7 +23,7 @@ import org.jivesoftware.smack.provider.ProviderManager;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Looks for a provider file location based on the VM argument <i>smack.provider.file</>. If it is supplied, its value will
|
* Looks for a provider file location based on the VM argument <i>smack.provider.file</i>. If it is supplied, its value will
|
||||||
* be used as a file location for a providers file and loaded into the {@link ProviderManager} on Smack initialization.
|
* be used as a file location for a providers file and loaded into the {@link ProviderManager} on Smack initialization.
|
||||||
*
|
*
|
||||||
* @author Robin Collier
|
* @author Robin Collier
|
||||||
|
|
|
@ -155,7 +155,7 @@ public final class Presence extends Stanza implements TypedCloneable<Presence> {
|
||||||
* {@link Mode#dnd do not disturb}. False will be returned when the type or mode
|
* {@link Mode#dnd do not disturb}. False will be returned when the type or mode
|
||||||
* is any other value, including when the presence type is unavailable (offline).
|
* is any other value, including when the presence type is unavailable (offline).
|
||||||
* This is a convenience method equivalent to
|
* This is a convenience method equivalent to
|
||||||
* <tt>type == Type.available && (mode == Mode.away || mode == Mode.xa || mode == Mode.dnd)</tt>.
|
* <tt>type == Type.available && (mode == Mode.away || mode == Mode.xa || mode == Mode.dnd)</tt>.
|
||||||
*
|
*
|
||||||
* @return true if the presence type is available and the presence mode is away, xa, or dnd.
|
* @return true if the presence type is available and the presence mode is away, xa, or dnd.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -48,7 +48,7 @@ import org.xmlpull.v1.XmlPullParser;
|
||||||
* <entry xmlns='http://www.w3.org/2005/Atom'>
|
* <entry xmlns='http://www.w3.org/2005/Atom'>
|
||||||
* <title>Soliloquy</title>
|
* <title>Soliloquy</title>
|
||||||
* <link rel='alternative' type='text/html'/>
|
* <link rel='alternative' type='text/html'/>
|
||||||
* <id>tag:denmark.lit,2003:entry-32397</id>
|
* <id>tag:denmark.lit,2003:entry-32397</id>
|
||||||
* </entry>
|
* </entry>
|
||||||
* </item>
|
* </item>
|
||||||
* </items>
|
* </items>
|
||||||
|
|
|
@ -55,7 +55,7 @@ import org.jxmpp.util.XmppStringUtils;
|
||||||
* <iqProvider>
|
* <iqProvider>
|
||||||
* <elementName>query</elementName>
|
* <elementName>query</elementName>
|
||||||
* <namespace>jabber:iq:time</namespace>
|
* <namespace>jabber:iq:time</namespace>
|
||||||
* <className>org.jivesoftware.smack.packet.Time</className>
|
* <className>org.jivesoftware.smack.packet.Time</className>
|
||||||
* </iqProvider>
|
* </iqProvider>
|
||||||
* </smackProviders></pre>
|
* </smackProviders></pre>
|
||||||
*
|
*
|
||||||
|
@ -91,7 +91,7 @@ import org.jxmpp.util.XmppStringUtils;
|
||||||
* <extensionProvider>
|
* <extensionProvider>
|
||||||
* <elementName>x</elementName>
|
* <elementName>x</elementName>
|
||||||
* <namespace>jabber:iq:event</namespace>
|
* <namespace>jabber:iq:event</namespace>
|
||||||
* <className>org.jivesoftware.smack.packet.MessageEvent</className>
|
* <className>org.jivesoftware.smack.packet.MessageEvent</className>
|
||||||
* </extensionProvider>
|
* </extensionProvider>
|
||||||
* </smackProviders></pre>
|
* </smackProviders></pre>
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue