|
Smack | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jivesoftware.smackx.XHTMLManager
public class XHTMLManager
Manages XHTML formatted texts within messages. A XHTMLManager provides a high level access to get and set XHTML bodies to messages, enable and disable XHTML support and check if remote XMPP clients support XHTML.
Constructor Summary | |
---|---|
XHTMLManager()
|
Method Summary | |
---|---|
static void |
addBody(Message message,
String body)
Adds an XHTML body to the message. |
static Iterator |
getBodies(Message message)
Returns an Iterator for the XHTML bodies in the message. |
static boolean |
isServiceEnabled(XMPPConnection connection)
Returns true if the XHTML support is enabled for the given connection. |
static boolean |
isServiceEnabled(XMPPConnection connection,
String userID)
Returns true if the specified user handles XHTML messages. |
static boolean |
isXHTMLMessage(Message message)
Returns true if the message contains an XHTML extension. |
static void |
setServiceEnabled(XMPPConnection connection,
boolean enabled)
Enables or disables the XHTML support on a given connection. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public XHTMLManager()
Method Detail |
---|
public static Iterator getBodies(Message message)
message
- an XHTML message
public static void addBody(Message message, String body)
message
- the message that will receive the XHTML bodybody
- the string to add as an XHTML body to the messagepublic static boolean isXHTMLMessage(Message message)
message
- the message to check if contains an XHTML extentsion or not
public static void setServiceEnabled(XMPPConnection connection, boolean enabled)
Before starting to send XHTML messages to a user, check that the user can handle XHTML messages. Enable the XHTML support to indicate that this client handles XHTML messages.
connection
- the connection where the service will be enabled or disabledenabled
- indicates if the service will be enabled or disabledpublic static boolean isServiceEnabled(XMPPConnection connection)
connection
- the connection to look for XHTML support
public static boolean isServiceEnabled(XMPPConnection connection, String userID)
connection
- the connection to use to perform the service discoveryuserID
- the user to check. A fully qualified xmpp ID, e.g. jdoe@example.com
|
Smack | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |