Home | History | Annotate | Download | only in smackx

Lines Matching refs:null

61      * @param to         the list of JIDs to include in the TO list or <tt>null</tt> if no TO
63 * @param cc the list of JIDs to include in the CC list or <tt>null</tt> if no CC
65 * @param bcc the list of JIDs to include in the BCC list or <tt>null</tt> if no BCC
72 send(connection, packet, to, cc, bcc, null, null, false);
84 * @param to the list of JIDs to include in the TO list or <tt>null</tt> if no TO
86 * @param cc the list of JIDs to include in the CC list or <tt>null</tt> if no CC
88 * @param bcc the list of JIDs to include in the BCC list or <tt>null</tt> if no BCC
90 * @param replyTo address to which all replies are requested to be sent or <tt>null</tt>
92 * @param replyRoom JID of a MUC room to which responses should be sent or <tt>null</tt>
101 if (serviceAddress != null) {
108 if (noReply || (replyTo != null && replyTo.trim().length() > 0) ||
109 (replyRoom != null && replyRoom.trim().length() > 0)) {
133 if (info == null) {
139 if (info.getReplyRoom() != null) {
143 if (original.getThread() != null) {
147 if (replyAddress != null && replyAddress.getJid() != null) {
177 if (serviceAddress != null) {
179 sendThroughService(connection, reply, to, cc, null, null, null, false,
184 sendToIndividualRecipients(connection, reply, to, cc, null);
191 * <tt>null</tt> if none was found. Only packets sent to multiple recipients will
195 * @return the MultipleRecipientInfo contained in the specified packet or <tt>null</tt>
201 return extension == null ? null : new MultipleRecipientInfo(extension);
206 if (to != null) {
213 if (cc != null) {
220 if (bcc != null) {
234 if (to != null) {
237 multipleAddresses.addAddress(MultipleAddresses.TO, jid, null, null, false, null);
240 if (cc != null) {
243 multipleAddresses.addAddress(MultipleAddresses.CC, jid, null, null, false, null);
246 if (bcc != null) {
249 multipleAddresses.addAddress(MultipleAddresses.BCC, jid, null, null, false, null);
256 if (replyTo != null && replyTo.trim().length() > 0) {
258 .addAddress(MultipleAddresses.REPLY_TO, replyTo, null, null, false, null);
260 if (replyRoom != null && replyRoom.trim().length() > 0) {
261 multipleAddresses.addAddress(MultipleAddresses.REPLY_ROOM, replyRoom, null, null,
262 false, null);
281 * @return the address of the multiple recipients service or <tt>null</tt> if none was found.
286 if (serviceAddress == null) {
289 if (serviceAddress == null) {
315 services.put(serviceName, serviceAddress == null ? "" : serviceAddress);
324 return "".equals(serviceAddress) ? null : serviceAddress;