Searched defs:subtype (Results 1 - 7 of 7) sorted by relevance

/javamail/mbox/src/main/java/com/sun/mail/mbox/
H A DSunV3Multipart.java71 * Set the subtype. Throws MethodNotSupportedException.
73 * @param subtype Subtype
75 public void setSubType(String subtype) throws MessagingException { argument
77 "can't change SunV3Multipart subtype");
/javamail/mail/src/main/java/javax/mail/internet/
H A DMimePart.java238 * MIME subtype. The given Unicode string will be charset-encoded
244 * @param subtype the MIME subtype to use (e.g., "html")
248 public void setText(String text, String charset, String subtype) argument
H A DMimeMultipart.java60 * The default multipart subtype is "mixed". The other multipart
75 * subtype by using the <code>MimeMultipart(String subtype)</code>
197 * Construct a MimeMultipart object of the given subtype.
205 * @param subtype the MIME content subtype
207 public MimeMultipart(String subtype) { argument
213 ContentType cType = new ContentType("multipart", subtype, null);
220 * Construct a MimeMultipart object of the default "mixed" subtype,
234 * Construct a MimeMultipart object of the given subtype
242 MimeMultipart(String subtype, BodyPart... parts) argument
321 setSubType(String subtype) argument
[all...]
H A DMimeBodyPart.java291 * special character '*', then the subtype is ignored during the
763 * MIME subtype. The given Unicode string will be charset-encoded
769 * @param subtype the MIME subtype to use (e.g., "html")
773 public void setText(String text, String charset, String subtype) argument
775 setText(this, text, charset, subtype);
1163 // we only need the type and subtype so throw away the rest
1175 String subtype) throws MessagingException {
1182 // XXX - should at least ensure that subtype is an atom
1183 part.setContent(text, "text/" + subtype
1174 setText(MimePart part, String text, String charset, String subtype) argument
[all...]
H A DMimeMessage.java1008 * special character '*', then the subtype is ignored during the
1561 * MIME subtype. The given Unicode string will be charset-encoded
1567 * @param subtype the MIME subtype to use (e.g., "html")
1571 public void setText(String text, String charset, String subtype) argument
1573 MimeBodyPart.setText(this, text, charset, subtype);
/javamail/dsn/src/main/java/com/sun/mail/dsn/
H A DMultipartReport.java390 * Set the subtype. Throws MessagingException.
392 * @param subtype Subtype
393 * @exception MessagingException always; can't change subtype
395 public synchronized void setSubType(String subtype) argument
397 throw new MessagingException("Can't change subtype of MultipartReport");
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/
H A DBODYSTRUCTURE.java63 public String subtype; // Subtype field in class:BODYSTRUCTURE
123 subtype = r.readString(); // subtype
125 System.out.println("DEBUG IMAP: subtype " + subtype);
168 type + "/" + subtype + ": " +
222 subtype = "plain";
235 subtype = r.readString();
237 System.out.println("DEBUG IMAP: subtype " + subtype);
[all...]

Completed in 169 milliseconds