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.
16 * @package Zend_Text_Table
17 * @copyright Copyright (c) 2005-2009 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 16209 2009-06-21 19:20:34Z thomas $
23 * Interface for Zend_Text_Table decorators
26 * @package Zend_Text_Table
27 * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
28 * @license http://framework.zend.com/license/new-bsd New BSD License
30 interface Zend_Text_Table_Decorator_Interface
33 * Get a single character for the top left corner
37 public function getTopLeft();
40 * Get a single character for the top right corner
44 public function getTopRight();
47 * Get a single character for the bottom left corner
51 public function getBottomLeft();
54 * Get a single character for the bottom right corner
58 public function getBottomRight();
61 * Get a single character for a vertical line
65 public function getVertical();
68 * Get a single character for a horizontal line
72 public function getHorizontal();
75 * Get a single character for a crossing line
79 public function getCross();
82 * Get a single character for a vertical divider right
86 public function getVerticalRight();
89 * Get a single character for a vertical divider left
93 public function getVerticalLeft();
96 * Get a single character for a horizontal divider down
100 public function getHorizontalDown();
103 * Get a single character for a horizontal divider up
107 public function getHorizontalUp();