Uses of Class
org.xmpp.packet.JID

Packages that use JID
org.xmpp.component   
org.xmpp.muc   
org.xmpp.packet   
 

Uses of JID in org.xmpp.component
 

Methods in org.xmpp.component with parameters of type JID
 void Component.initialize(JID jid, ComponentManager componentManager)
          Initializes this component with a ComponentManager and the JID that this component is available at (e.g.
 

Uses of JID in org.xmpp.muc
 

Constructors in org.xmpp.muc with parameters of type JID
DestroyRoom(JID alternateJID, java.lang.String reason)
          Creates a new DestroyRoom with the reason for the destruction and an alternate room JID.
 

Uses of JID in org.xmpp.packet
 

Fields in org.xmpp.packet declared as JID
protected  JID Packet.fromJID
           
protected  JID Packet.toJID
           
 

Methods in org.xmpp.packet that return JID
 JID Packet.getFrom()
          Returns the XMPP address (JID) that the packet is from, or null if the "from" attribute is not set.
 JID Roster.Item.getJID()
          Returns the JID associated with this item.
 JID Packet.getTo()
          Returns the XMPP address (JID) that the packet is addressed to, or null if the "to" attribute is not set.
 

Methods in org.xmpp.packet with parameters of type JID
 Roster.Item Roster.addItem(JID jid, Roster.Subscription subscription)
          Adds a new item to the roster.
 Roster.Item Roster.addItem(JID jid, java.lang.String name, Roster.Ask ask, Roster.Subscription subscription, java.util.Collection<java.lang.String> groups)
          Adds a new item to the roster.
 int JID.compareTo(JID jid)
           
 void Roster.removeItem(JID jid)
          Removes an item from this roster.
 void Packet.setFrom(JID from)
          Sets the XMPP address (JID) that the packet comes from.
 void Packet.setTo(JID to)
          Sets the XMPP address (JID) that the packet is address to.