Geen omschrijving

PopupWindowProperties.php 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?php
  2. /*
  3. * Copyright 2014 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  6. * use this file except in compliance with the License. You may obtain a copy of
  7. * the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. * License for the specific language governing permissions and limitations under
  15. * the License.
  16. */
  17. class Google_Service_Dfareporting_PopupWindowProperties extends Google_Model
  18. {
  19. protected $dimensionType = 'Google_Service_Dfareporting_Size';
  20. protected $dimensionDataType = '';
  21. protected $offsetType = 'Google_Service_Dfareporting_OffsetPosition';
  22. protected $offsetDataType = '';
  23. public $positionType;
  24. public $showAddressBar;
  25. public $showMenuBar;
  26. public $showScrollBar;
  27. public $showStatusBar;
  28. public $showToolBar;
  29. public $title;
  30. /**
  31. * @param Google_Service_Dfareporting_Size
  32. */
  33. public function setDimension(Google_Service_Dfareporting_Size $dimension)
  34. {
  35. $this->dimension = $dimension;
  36. }
  37. /**
  38. * @return Google_Service_Dfareporting_Size
  39. */
  40. public function getDimension()
  41. {
  42. return $this->dimension;
  43. }
  44. /**
  45. * @param Google_Service_Dfareporting_OffsetPosition
  46. */
  47. public function setOffset(Google_Service_Dfareporting_OffsetPosition $offset)
  48. {
  49. $this->offset = $offset;
  50. }
  51. /**
  52. * @return Google_Service_Dfareporting_OffsetPosition
  53. */
  54. public function getOffset()
  55. {
  56. return $this->offset;
  57. }
  58. public function setPositionType($positionType)
  59. {
  60. $this->positionType = $positionType;
  61. }
  62. public function getPositionType()
  63. {
  64. return $this->positionType;
  65. }
  66. public function setShowAddressBar($showAddressBar)
  67. {
  68. $this->showAddressBar = $showAddressBar;
  69. }
  70. public function getShowAddressBar()
  71. {
  72. return $this->showAddressBar;
  73. }
  74. public function setShowMenuBar($showMenuBar)
  75. {
  76. $this->showMenuBar = $showMenuBar;
  77. }
  78. public function getShowMenuBar()
  79. {
  80. return $this->showMenuBar;
  81. }
  82. public function setShowScrollBar($showScrollBar)
  83. {
  84. $this->showScrollBar = $showScrollBar;
  85. }
  86. public function getShowScrollBar()
  87. {
  88. return $this->showScrollBar;
  89. }
  90. public function setShowStatusBar($showStatusBar)
  91. {
  92. $this->showStatusBar = $showStatusBar;
  93. }
  94. public function getShowStatusBar()
  95. {
  96. return $this->showStatusBar;
  97. }
  98. public function setShowToolBar($showToolBar)
  99. {
  100. $this->showToolBar = $showToolBar;
  101. }
  102. public function getShowToolBar()
  103. {
  104. return $this->showToolBar;
  105. }
  106. public function setTitle($title)
  107. {
  108. $this->title = $title;
  109. }
  110. public function getTitle()
  111. {
  112. return $this->title;
  113. }
  114. }