123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
-
-
-
-
-
- interface Swift_Mime_MimeEntity
- extends Swift_Mime_CharsetObserver, Swift_Mime_EncodingObserver
- {
-
-
- const LEVEL_TOP = 16;
-
-
- const LEVEL_MIXED = 256;
-
-
- const LEVEL_ALTERNATIVE = 4096;
-
-
- const LEVEL_RELATED = 65536;
-
-
-
- public function getNestingLevel();
-
-
-
- public function getContentType();
-
-
-
- public function getId();
-
-
-
- public function getChildren();
-
-
-
- public function setChildren(array $children);
-
-
-
- public function getHeaders();
-
-
-
- public function getBody();
-
-
-
- public function setBody($body, $contentType = null);
-
-
-
- public function toString();
-
-
-
- public function toByteStream(Swift_InputByteStream $is);
-
- }
|