HomeSort by relevance Sort by last modified time
    Searched defs:occupant (Results 1 - 2 of 2) sorted by null

  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
OccupantsInfo.java 78 for (OccupantInfo occupant : occupants) {
79 buf.append("<occupant>");
80 // Add the occupant jid
82 buf.append(occupant.getJID());
84 // Add the occupant nickname
86 buf.append(occupant.getNickname());
88 // Add the date when the occupant joined the room
90 buf.append(UTC_FORMAT.format(occupant.getJoined()));
92 buf.append("</occupant>");
139 ("occupant".equals(parser.getName()))) {
    [all...]
  /external/smack/src/org/jivesoftware/smackx/muc/
Occupant.java 29 * Represents the information about an occupant in a given room. The information will always have
30 * the affiliation and role of the occupant in the room. The full JID and nickname are optional.
34 public class Occupant {
42 Occupant(MUCAdmin.Item item) {
50 Occupant(Presence presence) {
63 * Returns the full JID of the occupant. If this information was extracted from a presence and
68 * @return the full JID of the occupant.
75 * Returns the affiliation of the occupant. Possible affiliations are: "owner", "admin",
78 * @return the affiliation of the occupant.
85 * Returns the current role of the occupant in the room. This information will always b
109 Occupant occupant = (Occupant)obj; local
    [all...]

Completed in 1686 milliseconds