|
TYPO3 API
SVNRelease
|
00001 <?php 00002 00003 /* 00004 * This file is part of SwiftMailer. 00005 * (c) 2004-2009 Chris Corbyn 00006 * 00007 * For the full copyright and license information, please view the LICENSE 00008 * file that was distributed with this source code. 00009 */ 00010 00011 //@require 'Swift/Mime/Header.php'; 00012 00013 /** 00014 * A MIME Header with parameters. 00015 * @package Swift 00016 * @subpackage Mime 00017 * @author Chris Corbyn 00018 */ 00019 interface Swift_Mime_ParameterizedHeader extends Swift_Mime_Header 00020 { 00021 00022 /** 00023 * Set the value of $parameter. 00024 * @param string $parameter 00025 * @param string $value 00026 */ 00027 public function setParameter($parameter, $value); 00028 00029 /** 00030 * Get the value of $parameter. 00031 * @return string 00032 */ 00033 public function getParameter($parameter); 00034 00035 }
1.8.0