/zf/library/Zend/Text/Table/Decorator/Interface.php

http://github.com/eryx/php-framework-benchmark · PHP · 108 lines · 15 code · 11 blank · 82 comment · 0 complexity · a4fc203dd7ef6ba3ca099c7121d72e32 MD5 · raw file

  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. * Interface for Zend_Text_Table decorators
  23. *
  24. * @category Zend
  25. * @package Zend_Text_Table
  26. * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
  27. * @license http://framework.zend.com/license/new-bsd New BSD License
  28. */
  29. interface Zend_Text_Table_Decorator_Interface
  30. {
  31. /**
  32. * Get a single character for the top left corner
  33. *
  34. * @return string
  35. */
  36. public function getTopLeft();
  37. /**
  38. * Get a single character for the top right corner
  39. *
  40. * @return string
  41. */
  42. public function getTopRight();
  43. /**
  44. * Get a single character for the bottom left corner
  45. *
  46. * @return string
  47. */
  48. public function getBottomLeft();
  49. /**
  50. * Get a single character for the bottom right corner
  51. *
  52. * @return string
  53. */
  54. public function getBottomRight();
  55. /**
  56. * Get a single character for a vertical line
  57. *
  58. * @return string
  59. */
  60. public function getVertical();
  61. /**
  62. * Get a single character for a horizontal line
  63. *
  64. * @return string
  65. */
  66. public function getHorizontal();
  67. /**
  68. * Get a single character for a crossing line
  69. *
  70. * @return string
  71. */
  72. public function getCross();
  73. /**
  74. * Get a single character for a vertical divider right
  75. *
  76. * @return string
  77. */
  78. public function getVerticalRight();
  79. /**
  80. * Get a single character for a vertical divider left
  81. *
  82. * @return string
  83. */
  84. public function getVerticalLeft();
  85. /**
  86. * Get a single character for a horizontal divider down
  87. *
  88. * @return string
  89. */
  90. public function getHorizontalDown();
  91. /**
  92. * Get a single character for a horizontal divider up
  93. *
  94. * @return string
  95. */
  96. public function getHorizontalUp();
  97. }