Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Text / Table / Decorator / DecoratorInterface.php
blob7f819b08192c790b0dfdd554c37a05bc488b497c
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Text\Table\Decorator;
12 /**
13 * Interface for Zend\Text\Table decorators
15 interface DecoratorInterface
17 /**
18 * Get a single character for the top left corner
20 * @return string
22 public function getTopLeft();
24 /**
25 * Get a single character for the top right corner
27 * @return string
29 public function getTopRight();
31 /**
32 * Get a single character for the bottom left corner
34 * @return string
36 public function getBottomLeft();
38 /**
39 * Get a single character for the bottom right corner
41 * @return string
43 public function getBottomRight();
45 /**
46 * Get a single character for a vertical line
48 * @return string
50 public function getVertical();
52 /**
53 * Get a single character for a horizontal line
55 * @return string
57 public function getHorizontal();
59 /**
60 * Get a single character for a crossing line
62 * @return string
64 public function getCross();
66 /**
67 * Get a single character for a vertical divider right
69 * @return string
71 public function getVerticalRight();
73 /**
74 * Get a single character for a vertical divider left
76 * @return string
78 public function getVerticalLeft();
80 /**
81 * Get a single character for a horizontal divider down
83 * @return string
85 public function getHorizontalDown();
87 /**
88 * Get a single character for a horizontal divider up
90 * @return string
92 public function getHorizontalUp();