Searched defs:getContent (Results 1 - 14 of 14) sorted by relevance

/javamail/dsn/src/main/java/com/sun/mail/dsn/
H A Dmessage_deliverystatus.java83 return getContent(ds);
91 public Object getContent(DataSource ds) throws IOException { method in class:message_deliverystatus
H A Dmessage_dispositionnotification.java83 return getContent(ds);
91 public Object getContent(DataSource ds) throws IOException { method in class:message_dispositionnotification
H A Dmultipart_report.java84 return getContent(ds);
92 public Object getContent(DataSource ds) throws IOException { method in class:multipart_report
H A Dtext_rfc822headers.java88 return getContent(ds);
95 public Object getContent(DataSource ds) throws IOException { method in class:text_rfc822headers
/javamail/taglib/src/main/java/demo/
H A DAttachmentInfo.java62 public String getContent() throws IOException, MessagingException { method in class:AttachmentInfo
64 return (String)part.getContent();
/javamail/android/activation/src/main/java/javax/activation/
H A DDataContentHandler.java98 public Object getContent(DataSource ds) throws IOException; method in interface:DataContentHandler
H A DDataHandler.java547 public Object getContent() throws IOException { method in class:DataHandler
551 return getDataContentHandler().getContent(getDataSource());
802 public Object getContent(DataSource ds) throws IOException { method in class:DataSourceDataContentHandler
805 return dch.getContent(ds);
890 public Object getContent(DataSource ds) { method in class:ObjectDataContentHandler
/javamail/mail/src/main/java/com/sun/mail/handlers/
H A Dimage_gif.java59 public Object getContent(DataSource ds) throws IOException { method in class:image_gif
H A Dmessage_rfc822.java68 public Object getContent(DataSource ds) throws IOException { method in class:message_rfc822
H A Dmultipart_mixed.java63 public Object getContent(DataSource ds) throws IOException { method in class:multipart_mixed
H A Dtext_plain.java74 public Object getContent(DataSource ds) throws IOException { method in class:text_plain
/javamail/mail/src/main/java/javax/mail/
H A DPart.java79 * <li> As a Java object - using the <code>getContent()</code> method.
83 * Multipart or subclass thereof. That is, <code>getContent()</code> on a
295 * getContent() method
303 * @see javax.activation.DataHandler#getContent
305 public Object getContent() throws IOException, MessagingException; method in interface:Part
/javamail/mail/src/main/java/javax/mail/internet/
H A DMimeBodyPart.java139 * If this field is not null, it's return by the {@link #getContent}
140 * method. The {@link #getContent} method sets this field if it
601 * <code>getInputStream</code> method or <code>getContent</code> method
641 * That is, it invokes getDataHandler().getContent();
652 public Object getContent() throws IOException, MessagingException { method in class:MimeBodyPart
657 c = getDataHandler().getContent();
1482 mbp.cachedContent : dh.getContent();
1486 msg.cachedContent : dh.getContent();
1488 o = dh.getContent();
H A DMimeMessage.java167 * If this field is not null, it's return by the {@link #getContent}
168 * method. The {@link #getContent} method sets this field if it
1374 * <code>getInputStream</code> method or <code>getContent</code> method
1436 * that is, it invokes <code>getDataHandler().getContent()</code>.
1443 * @see javax.activation.DataHandler#getContent
1449 public Object getContent() throws IOException, MessagingException { method in class:MimeMessage
1454 c = getDataHandler().getContent();

Completed in 136 milliseconds