Searched defs:headers (Results 1 - 8 of 8) sorted by relevance
/javamail/dsn/src/main/java/com/sun/mail/dsn/ |
H A D | MessageHeaders.java | 50 * A special MimeMessage object that contains only message headers, 51 * no content. Used to represent the MIME type text/rfc822-headers. 81 * @param headers InternetHeaders to use 84 public MessageHeaders(InternetHeaders headers) throws MessagingException { argument 86 this.headers = headers;
|
/javamail/client/src/main/java/ |
H A D | MessageViewer.java | 51 TextArea headers; field in class:MessageViewer 70 // add the headers 71 headers = new TextArea("", 4, 80, TextArea.SCROLLBARS_NONE); 72 headers.setEditable(false); 73 add(headers, gb); 92 headers.setText(""); 163 headers.setText(sb.toString()); 165 headers.setText("");
|
/javamail/mail/src/main/java/javax/mail/ |
H A D | FetchProfile.java | 56 * Messages (Example: to display the top-level headers in a headerlist) 87 private Vector<String> headers; // vector of header names field in class:FetchProfile 169 headers = null; 194 if (headers == null) 195 headers = new Vector<String>(); 196 headers.addElement(headerName); 216 return headers != null && headers.contains(headerName); 236 * @return headers set in this profile 239 if (headers [all...] |
/javamail/mbox/src/main/java/com/sun/mail/mbox/ |
H A D | SunV3BodyPart.java | 64 * @param headers The header of this part 67 public SunV3BodyPart(InternetHeaders headers, byte[] content) argument 69 super(headers, content); 182 * @see #headers 319 * and update the appropriate headers. Typical headers that get 326 * headers. Typically this is triggered off by our writeTo() method. 329 * all its headers from the store, and so does'nt need this. 332 * need to resync our headers. Typically this is triggered off by
|
/javamail/mail/src/main/java/javax/mail/internet/ |
H A D | MimeMultipart.java | 494 * Update headers. The default implementation here just 726 InternetHeaders headers = null; 729 // skip headers 741 // collect the headers for this body part 742 headers = createInternetHeaders(in); 900 part = createMimeBodyPart(headers, buf.toByteArray()); 973 * headers from the given InputStream. Subclasses can override 978 * @param is the InputStream to read the headers from 995 * @param headers the headers fo 1001 createMimeBodyPart(InternetHeaders headers, byte[] content) argument [all...] |
H A D | InternetHeaders.java | 51 * headers. Given an RFC822 format message stream, it reads lines 58 * and MimeBody use this class for holding their headers. 60 * <hr> <strong>A note on RFC822 and MIME headers</strong><p> 68 * the MIME requirements for the specified headers. In addition, these 71 * SMTP). Received headers may have been folded. The application is 72 * responsible for folding and unfolding headers as appropriate. <p> 94 * for headers of that name, to preserve the order of headers. 96 * the location in the list of headers where new headers ar 301 protected List headers; field in class:InternetHeaders [all...] |
H A D | MimeBodyPart.java | 56 * and store the headers of that body part. 58 * <hr><strong>A note on RFC 822 and MIME headers</strong><p> 62 * in certain portions of certain headers, by encoding those characters. 67 * the MIME requirements for the specified headers. In addition, these 70 * SMTP). Received headers may have been folded. The application is 71 * responsible for folding and unfolding headers as appropriate. <p> 129 * The InternetHeaders object that stores all the headers 132 protected InternetHeaders headers; field in class:MimeBodyPart 155 headers = new InternetHeaders(); 180 headers 205 MimeBodyPart(InternetHeaders headers, byte[] content) argument [all...] |
H A D | MimeMessage.java | 68 * store the top level RFC 822 headers of a message. <p> 71 * the parsing of address headers. By default, strict parsing of address 72 * headers is done. If this property is set to <code>"false"</code>, 77 * <hr><strong>A note on RFC 822 and MIME headers</strong><p> 81 * in certain portions of certain headers, by encoding those characters. 86 * the MIME requirements for the specified headers. In addition, these 89 * SMTP). Received headers may have been folded. The application is 90 * responsible for folding and unfolding headers as appropriate. <p> 130 protected InternetHeaders headers; field in class:MimeMessage 179 // Should addresses in headers b 307 MimeMessage(Folder folder, InternetHeaders headers, byte[] content, int msgnum) argument [all...] |
Completed in 37 milliseconds