* @package Swift_Plugin * @subpackage VerboseSending * @license GNU Lesser General Public License */ /** * The View layer for the Verbose Sending Plugin * @package Swift_Plugin * @subpackage VerboseSending * @author Chris Corbyn */ abstract class Swift_Plugin_VerboseSending_AbstractView { /** * Paint the result of a send operation * @param string The email address that was tried * @param boolean True if the message was successfully sent */ abstract public function paintResult($address, $result); }