*prechod na novsiu verziu ZF
[sport-group.git] / library / Zend / Text / Table / Decorator / Interface.php
blobe68bdea7523e80ea3d81264ac286794d82e81ad9
1 <?php
2 /**
3 * Zend Framework
5 * LICENSE
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.
15 * @category Zend
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 $
22 /**
23 * Interface for Zend_Text_Table decorators
25 * @category Zend
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
32 /**
33 * Get a single character for the top left corner
35 * @return string
37 public function getTopLeft();
39 /**
40 * Get a single character for the top right corner
42 * @return string
44 public function getTopRight();
46 /**
47 * Get a single character for the bottom left corner
49 * @return string
51 public function getBottomLeft();
53 /**
54 * Get a single character for the bottom right corner
56 * @return string
58 public function getBottomRight();
60 /**
61 * Get a single character for a vertical line
63 * @return string
65 public function getVertical();
67 /**
68 * Get a single character for a horizontal line
70 * @return string
72 public function getHorizontal();
74 /**
75 * Get a single character for a crossing line
77 * @return string
79 public function getCross();
81 /**
82 * Get a single character for a vertical divider right
84 * @return string
86 public function getVerticalRight();
88 /**
89 * Get a single character for a vertical divider left
91 * @return string
93 public function getVerticalLeft();
95 /**
96 * Get a single character for a horizontal divider down
98 * @return string
100 public function getHorizontalDown();
103 * Get a single character for a horizontal divider up
105 * @return string
107 public function getHorizontalUp();