/zf/library/Zend/Text/Table/Decorator/Interface.php
PHP | 108 lines | 15 code | 11 blank | 82 comment | 0 complexity | a4fc203dd7ef6ba3ca099c7121d72e32 MD5 | raw file
Possible License(s): MIT, BSD-3-Clause, Apache-2.0, LGPL-2.1, LGPL-3.0, BSD-2-Clause
1<?php 2/** 3 * Zend Framework 4 * 5 * LICENSE 6 * 7 * This source file is subject to the new BSD license that is bundled 8 * with this package in the file LICENSE.txt. 9 * It is also available through the world-wide-web at this URL: 10 * http://framework.zend.com/license/new-bsd 11 * If you did not receive a copy of the license and are unable to 12 * obtain it through the world-wide-web, please send an email 13 * to license@zend.com so we can send you a copy immediately. 14 * 15 * @category Zend 16 * @package Zend_Text_Table 17 * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com) 18 * @license http://framework.zend.com/license/new-bsd New BSD License 19 * @version $Id: Interface.php 23775 2011-03-01 17:25:24Z ralph $ 20 */ 21 22/** 23 * Interface for Zend_Text_Table decorators 24 * 25 * @category Zend 26 * @package Zend_Text_Table 27 * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com) 28 * @license http://framework.zend.com/license/new-bsd New BSD License 29 */ 30interface Zend_Text_Table_Decorator_Interface 31{ 32 /** 33 * Get a single character for the top left corner 34 * 35 * @return string 36 */ 37 public function getTopLeft(); 38 39 /** 40 * Get a single character for the top right corner 41 * 42 * @return string 43 */ 44 public function getTopRight(); 45 46 /** 47 * Get a single character for the bottom left corner 48 * 49 * @return string 50 */ 51 public function getBottomLeft(); 52 53 /** 54 * Get a single character for the bottom right corner 55 * 56 * @return string 57 */ 58 public function getBottomRight(); 59 60 /** 61 * Get a single character for a vertical line 62 * 63 * @return string 64 */ 65 public function getVertical(); 66 67 /** 68 * Get a single character for a horizontal line 69 * 70 * @return string 71 */ 72 public function getHorizontal(); 73 74 /** 75 * Get a single character for a crossing line 76 * 77 * @return string 78 */ 79 public function getCross(); 80 81 /** 82 * Get a single character for a vertical divider right 83 * 84 * @return string 85 */ 86 public function getVerticalRight(); 87 88 /** 89 * Get a single character for a vertical divider left 90 * 91 * @return string 92 */ 93 public function getVerticalLeft(); 94 95 /** 96 * Get a single character for a horizontal divider down 97 * 98 * @return string 99 */ 100 public function getHorizontalDown(); 101 102 /** 103 * Get a single character for a horizontal divider up 104 * 105 * @return string 106 */ 107 public function getHorizontalUp(); 108}