Searched refs:subType (Results 1 – 6 of 6) sorted by relevance
34 protected String subType; field in MimeMultipart44 subType = MimeUtility.getHeaderParameter(contentType, null).split("/")[1]; in MimeMultipart()80 public void setSubType(String subType) throws MessagingException { in setSubType() argument81 this.subType = subType; in setSubType()82 contentType = String.format("multipart/%s; boundary=\"%s\"", subType, boundary); in setSubType()111 return subType; in getSubTypeForTest()
50 private String subType = "alternative"; field in Multipart66 return subType; in getSubType()76 public void setSubType(String subType) { in setSubType() argument77 this.subType = subType; in setSubType()
80 public void setSubType(String subType) throws MessagingException { in setSubType() argument81 this.mSubType = subType; in setSubType()82 mContentType = String.format("multipart/%s; boundary=\"%s\"", subType, mBoundary); in setSubType()
235 final String subType = parser.getSubType(); in parse() local237 if (type != null && subType != null) { in parse()
531 final ImapString subType = bs.getStringOrEmpty(1); in parseBodyStructure() local532 final String mimeType = (type.getString() + "/" + subType.getString()).toLowerCase(Locale.US); in parseBodyStructure()
902 final ImapString subType = bs.getStringOrEmpty(1); in parseBodyStructure() local904 (type.getString() + "/" + subType.getString()).toLowerCase(Locale.US); in parseBodyStructure()