Searched refs:body (Results 1 - 8 of 8) sorted by relevance

/javamail/taglib/src/main/java/demo/
H A DListAttachmentsTag.java43 * within the body of the tag.
87 * Method for processing the body content of the tag.
91 BodyContent body = getBodyContent();
93 body.writeOut(getPreviousOut());
98 // clear up so the next time the body content is empty
99 body.clearBody();
H A DListMessagesTag.java44 * within the body of the tag.
108 * Method for processing the body content of the tag.
112 BodyContent body = getBodyContent();
114 body.writeOut(getPreviousOut());
119 // clear up so the next time the body content is empty
120 body.clearBody();
H A DSendTag.java45 private String body; field in class:SendTag
127 if ((body = getBodyContent().getString()) != null)
128 msg.setText(body);
/javamail/mbox/src/main/java/com/sun/mail/mbox/
H A DSunV3Multipart.java111 * child body parts.
156 * Read and process body parts until we see the
161 * Collect the headers for this body part.
209 * Create a SunV3BodyPart to represent this body part.
211 SunV3BodyPart body =
213 addBodyPart(body);
/javamail/mail/src/main/java/com/sun/mail/util/logging/
H A DMailHandler.java121 * {@linkplain java.util.logging.Handler#getFilter() body} filter)
163 * class used for the body of the message. (defaults to <tt>null</tt>,
167 * <tt>Formatter</tt> class used to format the body of this message.
285 * The main message body is formatted using the <tt>Formatter</tt> returned by
287 * <tt>getFilter()</tt> will be included in the message body. The subject
290 * message body can be {@linkplain FileTypeMap#setDefaultFileTypeMap overridden}
292 * class name of the body formatter as the file extension. The MIME type of the
397 * This must be less than the body filter index (-1).
435 * to track the body filter. Zero and greater is used to track the
457 * Used to order all log records prior to formatting. The main email body
[all...]
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/
H A DSearchSequence.java113 return body((BodyTerm)term, charset);
354 protected Argument body(BodyTerm term, String charset) method in class:SearchSequence
H A DIMAPProtocol.java1699 * @param section the body section
1712 * @param section the body section
1727 String body = (peek ? "BODY.PEEK[" : "BODY[") + section + "]";
1728 return fetchSectionBody(msgno, section, body);
1735 * @param section the body section
1750 * @param section the body section
1765 * @param section the body section
1781 * @param section the body section
1798 String body = (peek ? "BODY.PEEK[" : "BODY[") + section + "]<" +
1801 return fetchSectionBody(msgno, section, body);
1814 fetchSectionBody(int msgno, String section, String body) argument
[all...]
/javamail/mail/src/test/java/com/sun/mail/util/logging/
H A DMailHandlerTest.java1238 BodyPart body = multi.getBodyPart(0);
1239 assertEquals(Part.INLINE, body.getDisposition());
1240 ContentType ct = new ContentType(body.getContentType());
2448 head = instance.contentTypeOf(new HeadFormatter("<html><body>").getHead(instance));
2591 BodyPart body = multi.getBodyPart(0);
2592 assertEquals(Part.INLINE, body.getDisposition());
2593 value[0] = body.getContentType();
6985 MimePart body = (MimePart) multipart.getBodyPart(0);
6986 ContentType type = new ContentType(body.getContentType());
6992 assertEquals(lang, body
[all...]

Completed in 1396 milliseconds