Uses of Class
org.jivesoftware.smack.packet.Message

Packages that use Message
org.jivesoftware.smack Core classes of the Smack API. 
org.jivesoftware.smackx Smack extensions API. 
org.jivesoftware.smackx.muc Classes and Interfaces that implement Multi-User Chat (MUC). 
 

Uses of Message in org.jivesoftware.smack
 

Methods in org.jivesoftware.smack with parameters of type Message
 void ThreadedDummyConnection.addMessage(Message msgToProcess)
           
 void MessageListener.processMessage(Chat chat, Message message)
           
 void Chat.sendMessage(Message message)
          Sends a message to the other chat participant.
 

Uses of Message in org.jivesoftware.smackx
 

Methods in org.jivesoftware.smackx that return types with arguments of type Message
 java.util.Iterator<Message> OfflineMessageManager.getMessages()
          Returns an Iterator with all the offline Messages of the user.
 java.util.Iterator<Message> OfflineMessageManager.getMessages(java.util.List<java.lang.String> nodes)
          Returns an Iterator with the offline Messages whose stamp matches the specified request.
 

Methods in org.jivesoftware.smackx with parameters of type Message
static void XHTMLManager.addBody(Message message, java.lang.String body)
          Adds an XHTML body to the message.
static void MessageEventManager.addNotificationsRequests(Message message, boolean offline, boolean delivered, boolean displayed, boolean composing)
          Adds event notification requests to a message.
static java.util.Iterator XHTMLManager.getBodies(Message message)
          Returns an Iterator for the XHTML bodies in the message.
static boolean XHTMLManager.isXHTMLMessage(Message message)
          Returns true if the message contains an XHTML extension.
static void MultipleRecipientManager.reply(Connection connection, Message original, Message reply)
          Sends a reply to a previously received packet that was sent to multiple recipients.
 

Uses of Message in org.jivesoftware.smackx.muc
 

Methods in org.jivesoftware.smackx.muc that return Message
 Message MultiUserChat.createMessage()
          Creates a new Message to send to the chat room.
 Message MultiUserChat.nextMessage()
          Returns the next available message in the chat.
 Message MultiUserChat.nextMessage(long timeout)
          Returns the next available message in the chat.
 Message MultiUserChat.pollMessage()
          Polls for and returns the next message, or null if there isn't a message immediately available.
 

Methods in org.jivesoftware.smackx.muc with parameters of type Message
 void InvitationListener.invitationReceived(Connection conn, java.lang.String room, java.lang.String inviter, java.lang.String reason, java.lang.String password, Message message)
          Called when the an invitation to join a MUC room is received.
 void MultiUserChat.invite(Message message, java.lang.String user, java.lang.String reason)
          Invites another user to the room in which one is an occupant using a given Message.
 void MultiUserChat.sendMessage(Message message)
          Sends a Message to the chat room.