Lines Matching defs:reason

125      * the room occupants will receive a Presence packet of type 'unavailable' with the reason for
186 * the room occupants will receive a Presence packet of type 'unavailable' with the reason for
203 private String reason;
223 return reason;
248 * @param reason the message explaining the invitation.
250 public void setReason(String reason) {
251 this.reason = reason;
274 buf.append("<reason>").append(getReason()).append("</reason>");
288 private String reason;
305 * @return the message explaining the reason for the rejection.
308 return reason;
333 * @param reason the message explaining the reason for the rejection.
335 public void setReason(String reason) {
336 this.reason = reason;
359 buf.append("<reason>").append(getReason()).append("</reason>");
373 private String reason;
400 * Returns the reason for the item child. The reason is optional and could be used to
401 * explain the reason why a user (occupant) was kicked or banned.
403 * @return the reason for the item child.
406 return reason == null ? "" : reason;
463 * Sets the reason for the item child. The reason is optional and could be used to
464 * explain the reason why a user (occupant) was kicked or banned.
466 * @param reason the reason why a user (occupant) was kicked or banned.
468 public void setReason(String reason) {
469 this.reason = reason;
513 buf.append("<reason>").append(getReason()).append("</reason>");
536 * @param code the code that uniquely identifies the reason of the error.
543 * Returns the code that uniquely identifies the reason of the error. The code
546 * @return the code that uniquely identifies the reason of the error.
561 * the room occupants will receive a Presence packet of type 'unavailable' with the reason for
567 private String reason;
581 * Returns the reason for the room destruction.
583 * @return the reason for the room destruction.
586 return reason;
599 * Sets the reason for the room destruction.
601 * @param reason the reason for the room destruction.
603 public void setReason(String reason) {
604 this.reason = reason;
619 buf.append("<reason>").append(getReason()).append("</reason>");