31c6c7cff8dcb8358fafc4a675e7ccbcde61f350.svn-base 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2014 PHPExcel
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel_Chart
  23. * @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. /**
  28. * PHPExcel_Chart_Title
  29. *
  30. * @category PHPExcel
  31. * @package PHPExcel_Chart
  32. * @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
  33. */
  34. class PHPExcel_Chart_Title
  35. {
  36. /**
  37. * Title Caption
  38. *
  39. * @var string
  40. */
  41. private $_caption = null;
  42. /**
  43. * Title Layout
  44. *
  45. * @var PHPExcel_Chart_Layout
  46. */
  47. private $_layout = null;
  48. /**
  49. * Create a new PHPExcel_Chart_Title
  50. */
  51. public function __construct($caption = null, PHPExcel_Chart_Layout $layout = null)
  52. {
  53. $this->_caption = $caption;
  54. $this->_layout = $layout;
  55. }
  56. /**
  57. * Get caption
  58. *
  59. * @return string
  60. */
  61. public function getCaption() {
  62. return $this->_caption;
  63. }
  64. /**
  65. * Set caption
  66. *
  67. * @param string $caption
  68. * @return PHPExcel_Chart_Title
  69. */
  70. public function setCaption($caption = null) {
  71. $this->_caption = $caption;
  72. return $this;
  73. }
  74. /**
  75. * Get Layout
  76. *
  77. * @return PHPExcel_Chart_Layout
  78. */
  79. public function getLayout() {
  80. return $this->_layout;
  81. }
  82. }