javax.mail.Multipart.setParent()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(9.4k)|赞(0)|评价(0)|浏览(142)

本文整理了Java中javax.mail.Multipart.setParent()方法的一些代码示例,展示了Multipart.setParent()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Multipart.setParent()方法的具体详情如下:
包路径:javax.mail.Multipart
类名称:Multipart
方法名:setParent

Multipart.setParent介绍

[英]Set the parent of this Multipart to be the specified Part. Normally called by the Message or BodyPart``setContent(Multipart) method. parent may be null if the Multipart is being removed from its containing Part.
[中]将此Multipart的父项设置为指定的Part。通常由Message或[$3$]setContent(Multipart)方法调用。如果Multipart正在从其包含的Part中删除,则parent可能是null

代码示例

代码示例来源:origin: camunda/camunda-bpm-platform

  1. /**
  2. * This method sets the body part's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values.
  8. * @exception IllegalStateException if this body part is
  9. * obtained from a READ_ONLY folder.
  10. */
  11. public void setContent(Multipart mp) throws MessagingException {
  12. setDataHandler(new DataHandler(mp, mp.getContentType()));
  13. mp.setParent(this);
  14. }

代码示例来源:origin: com.sun.mail/javax.mail

  1. /**
  2. * This method sets the body part's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values.
  8. * @exception IllegalStateException if this body part is
  9. * obtained from a READ_ONLY folder.
  10. */
  11. @Override
  12. public void setContent(Multipart mp) throws MessagingException {
  13. setDataHandler(new DataHandler(mp, mp.getContentType()));
  14. mp.setParent(this);
  15. }

代码示例来源:origin: camunda/camunda-bpm-platform

  1. /**
  2. * This method sets the Message's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values
  8. * @exception IllegalStateException if this message is
  9. * obtained from a READ_ONLY folder.
  10. * @exception MessagingException for other failures
  11. */
  12. public void setContent(Multipart mp) throws MessagingException {
  13. setDataHandler(new DataHandler(mp, mp.getContentType()));
  14. mp.setParent(this);
  15. }

代码示例来源:origin: com.sun.mail/javax.mail

  1. /**
  2. * This method sets the Message's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values
  8. * @exception IllegalStateException if this message is
  9. * obtained from a READ_ONLY folder.
  10. * @exception MessagingException for other failures
  11. */
  12. @Override
  13. public void setContent(Multipart mp) throws MessagingException {
  14. setDataHandler(new DataHandler(mp, mp.getContentType()));
  15. mp.setParent(this);
  16. }

代码示例来源:origin: org.apache.geronimo.specs/geronimo-javamail_1.3.1_spec

  1. public void setContent(Multipart part) throws MessagingException {
  2. setDataHandler(new DataHandler(part, part.getContentType()));
  3. part.setParent(this);
  4. }

代码示例来源:origin: org.apache.geronimo.specs/geronimo-javamail_1.4_spec

  1. public void setContent(Multipart part) throws MessagingException {
  2. setDataHandler(new DataHandler(part, part.getContentType()));
  3. part.setParent(this);
  4. }

代码示例来源:origin: org.apache.geronimo.specs/geronimo-javamail_1.3.1_spec

  1. public void setContent(Multipart part) throws MessagingException {
  2. setDataHandler(new DataHandler(part, part.getContentType()));
  3. part.setParent(this);
  4. }

代码示例来源:origin: org.apache.geronimo.specs/geronimo-javamail_1.4_spec

  1. public void setContent(Multipart part) throws MessagingException {
  2. setDataHandler(new DataHandler(part, part.getContentType()));
  3. part.setParent(this);
  4. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.javax.mail

  1. /**
  2. * This method sets the Message's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values
  8. * @exception IllegalStateException if this message is
  9. * obtained from a READ_ONLY folder.
  10. * @exception MessagingException
  11. */
  12. public void setContent(Multipart mp) throws MessagingException {
  13. setDataHandler(new DataHandler(mp, mp.getContentType()));
  14. mp.setParent(this);
  15. }

代码示例来源:origin: javax.mail/javax.mail-api

  1. /**
  2. * This method sets the body part's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values.
  8. * @exception IllegalStateException if this body part is
  9. * obtained from a READ_ONLY folder.
  10. */
  11. @Override
  12. public void setContent(Multipart mp) throws MessagingException {
  13. setDataHandler(new DataHandler(mp, mp.getContentType()));
  14. mp.setParent(this);
  15. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.javax.mail

  1. /**
  2. * This method sets the body part's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values.
  8. * @exception IllegalStateException if this body part is
  9. * obtained from a READ_ONLY folder.
  10. */
  11. public void setContent(Multipart mp) throws MessagingException {
  12. setDataHandler(new DataHandler(mp, mp.getContentType()));
  13. mp.setParent(this);
  14. }

代码示例来源:origin: javax.mail/com.springsource.javax.mail

  1. /**
  2. * This method sets the body part's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values.
  8. * @exception IllegalStateException if this body part is
  9. * obtained from a READ_ONLY folder.
  10. */
  11. public void setContent(Multipart mp) throws MessagingException {
  12. setDataHandler(new DataHandler(mp, mp.getContentType()));
  13. mp.setParent(this);
  14. }

代码示例来源:origin: javax.mail/javax.mail-api

  1. /**
  2. * This method sets the Message's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values
  8. * @exception IllegalStateException if this message is
  9. * obtained from a READ_ONLY folder.
  10. * @exception MessagingException for other failures
  11. */
  12. @Override
  13. public void setContent(Multipart mp) throws MessagingException {
  14. setDataHandler(new DataHandler(mp, mp.getContentType()));
  15. mp.setParent(this);
  16. }

代码示例来源:origin: javax.mail/com.springsource.javax.mail

  1. /**
  2. * This method sets the Message's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values
  8. * @exception IllegalStateException if this message is
  9. * obtained from a READ_ONLY folder.
  10. * @exception MessagingException
  11. */
  12. public void setContent(Multipart mp) throws MessagingException {
  13. setDataHandler(new DataHandler(mp, mp.getContentType()));
  14. mp.setParent(this);
  15. }

代码示例来源:origin: com.sun.mail/android-mail

  1. /**
  2. * This method sets the Message's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values
  8. * @exception IllegalStateException if this message is
  9. * obtained from a READ_ONLY folder.
  10. * @exception MessagingException for other failures
  11. */
  12. @Override
  13. public void setContent(Multipart mp) throws MessagingException {
  14. setDataHandler(new DataHandler(mp, mp.getContentType()));
  15. mp.setParent(this);
  16. }

代码示例来源:origin: com.sun.mail/jakarta.mail

  1. /**
  2. * This method sets the body part's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values.
  8. * @exception IllegalStateException if this body part is
  9. * obtained from a READ_ONLY folder.
  10. */
  11. @Override
  12. public void setContent(Multipart mp) throws MessagingException {
  13. setDataHandler(new DataHandler(mp, mp.getContentType()));
  14. mp.setParent(this);
  15. }

代码示例来源:origin: org.glassfish.metro/webservices-extra

  1. /**
  2. * This method sets the body part's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values.
  8. * @exception IllegalStateException if this body part is
  9. * obtained from a READ_ONLY folder.
  10. */
  11. @Override
  12. public void setContent(Multipart mp) throws MessagingException {
  13. setDataHandler(new DataHandler(mp, mp.getContentType()));
  14. mp.setParent(this);
  15. }

代码示例来源:origin: com.sun.mail/mailapi

  1. /**
  2. * This method sets the body part's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values.
  8. * @exception IllegalStateException if this body part is
  9. * obtained from a READ_ONLY folder.
  10. */
  11. @Override
  12. public void setContent(Multipart mp) throws MessagingException {
  13. setDataHandler(new DataHandler(mp, mp.getContentType()));
  14. mp.setParent(this);
  15. }

代码示例来源:origin: com.sun.mail/android-mail

  1. /**
  2. * This method sets the body part's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values.
  8. * @exception IllegalStateException if this body part is
  9. * obtained from a READ_ONLY folder.
  10. */
  11. @Override
  12. public void setContent(Multipart mp) throws MessagingException {
  13. setDataHandler(new DataHandler(mp, mp.getContentType()));
  14. mp.setParent(this);
  15. }

代码示例来源:origin: com.sun.mail/mailapi

  1. /**
  2. * This method sets the Message's content to a Multipart object.
  3. *
  4. * @param mp The multipart object that is the Message's content
  5. * @exception IllegalWriteException if the underlying
  6. * implementation does not support modification of
  7. * existing values
  8. * @exception IllegalStateException if this message is
  9. * obtained from a READ_ONLY folder.
  10. * @exception MessagingException for other failures
  11. */
  12. @Override
  13. public void setContent(Multipart mp) throws MessagingException {
  14. setDataHandler(new DataHandler(mp, mp.getContentType()));
  15. mp.setParent(this);
  16. }

相关文章