Lines Matching defs:is

5  * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
45 * The MimeMultipart class is an implementation
48 * A MimeMultipart is obtained from a MimeBodyPart whose primary type
49 * is "multipart" (by invoking the part's <code>getContent()</code> method)
52 * The default multipart subtype is "mixed". The other multipart
56 * content. The intent is that service providers, mail JavaBean writers
61 * handler is treated just like any other type handler, thereby
87 * Defaults to true; set to false when our constructor is
118 * is created. Its content type is set to "multipart/mixed".
119 * A unique boundary string is generated and this string is
131 * A unique boundary string is generated and this string is
152 * given DataSource is a MultipartDataSource object.
154 * Otherwise, the DataSource is assumed to provide a MIME multipart
155 * byte stream. The <code>parsed</code> flag is set to false. When
181 * of such a multipart object is "mixed". <p>
220 * Returns null if the part is not found.
248 * Note that the boundary parameter is already set up when
249 * a new and empty MimeMultipart object is created. <p>
251 * This method is called when the <code>saveChanges</code>
252 * method is invoked on the Message object containing this
253 * MimeMultipart. This is typically done as part of the Message
254 * send process, however note that a client is free to call
255 * it any number of times. So if the header updating process is
289 * appropriate MimeBodyParts. The <code>parsed</code> flag is
290 * set to true, and if true on entry nothing is done. This
291 * method is called by all other methods that need data for
389 * next line is a boundary.
423 // if this is not the first line, write out the
489 * @param is the InputStream to read the headers from
493 protected InternetHeaders createInternetHeaders(InputStream is)
495 return new InternetHeaders(is);
520 * @param is InputStream containing the body part
524 protected MimeBodyPart createMimeBodyPart(InputStream is) throws MessagingException {
525 return new MimeBodyPart(is);
532 * objects into this MimeMultipart. This MimeMultipart's contentType is
535 * This method is typically used in those cases where one
589 * is out of range.
601 * Adds a MimeBodyPart to the multipart. The MimeBodyPart is appended to
616 * If <code>index</code> is not the last one in the list,
618 * is larger than the number of parts present, the
619 * MimeBodyPart is appended to the end.
646 * <code>MimeMultipart</code> is being removed from its containing