Complex classes like dtAvailability often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use dtAvailability, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 5 | class dtAvailability |
||
| 6 | { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * @var string $ShortName |
||
| 10 | */ |
||
| 11 | protected $ShortName = null; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var int $ID_RoomType |
||
| 15 | */ |
||
| 16 | protected $ID_RoomType = null; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var int $ID_AccommodationType |
||
| 20 | */ |
||
| 21 | protected $ID_AccommodationType = null; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var int $_x0030_ |
||
| 25 | */ |
||
| 26 | protected $_x0030_ = null; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var int $_x0031_ |
||
| 30 | */ |
||
| 31 | protected $_x0031_ = null; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var int $_x0032_ |
||
| 35 | */ |
||
| 36 | protected $_x0032_ = null; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var int $_x0033_ |
||
| 40 | */ |
||
| 41 | protected $_x0033_ = null; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @var int $_x0034_ |
||
| 45 | */ |
||
| 46 | protected $_x0034_ = null; |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @var int $_x0035_ |
||
| 50 | */ |
||
| 51 | protected $_x0035_ = null; |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @var int $_x0036_ |
||
| 55 | */ |
||
| 56 | protected $_x0036_ = null; |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @var int $_x0037_ |
||
| 60 | */ |
||
| 61 | protected $_x0037_ = null; |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @var int $_x0038_ |
||
| 65 | */ |
||
| 66 | protected $_x0038_ = null; |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @var int $_x0039_ |
||
| 70 | */ |
||
| 71 | protected $_x0039_ = null; |
||
| 72 | |||
| 73 | /** |
||
| 74 | * @var int $_x0031_0 |
||
| 75 | */ |
||
| 76 | protected $_x0031_0 = null; |
||
| 77 | |||
| 78 | /** |
||
| 79 | * @var int $_x0031_1 |
||
| 80 | */ |
||
| 81 | protected $_x0031_1 = null; |
||
| 82 | |||
| 83 | /** |
||
| 84 | * @var int $_x0031_2 |
||
| 85 | */ |
||
| 86 | protected $_x0031_2 = null; |
||
| 87 | |||
| 88 | /** |
||
| 89 | * @var int $_x0031_3 |
||
| 90 | */ |
||
| 91 | protected $_x0031_3 = null; |
||
| 92 | |||
| 93 | /** |
||
| 94 | * @var int $_x0031_4 |
||
| 95 | */ |
||
| 96 | protected $_x0031_4 = null; |
||
| 97 | |||
| 98 | /** |
||
| 99 | * @var int $_x0031_5 |
||
| 100 | */ |
||
| 101 | protected $_x0031_5 = null; |
||
| 102 | |||
| 103 | /** |
||
| 104 | * @var int $_x0031_6 |
||
| 105 | */ |
||
| 106 | protected $_x0031_6 = null; |
||
| 107 | |||
| 108 | /** |
||
| 109 | * @var int $_x0031_7 |
||
| 110 | */ |
||
| 111 | protected $_x0031_7 = null; |
||
| 112 | |||
| 113 | /** |
||
| 114 | * @var int $_x0031_8 |
||
| 115 | */ |
||
| 116 | protected $_x0031_8 = null; |
||
| 117 | |||
| 118 | /** |
||
| 119 | * @var int $_x0031_9 |
||
| 120 | */ |
||
| 121 | protected $_x0031_9 = null; |
||
| 122 | |||
| 123 | /** |
||
| 124 | * @var int $_x0032_0 |
||
| 125 | */ |
||
| 126 | protected $_x0032_0 = null; |
||
| 127 | |||
| 128 | /** |
||
| 129 | * @var int $_x0032_1 |
||
| 130 | */ |
||
| 131 | protected $_x0032_1 = null; |
||
| 132 | |||
| 133 | /** |
||
| 134 | * @var int $_x0032_2 |
||
| 135 | */ |
||
| 136 | protected $_x0032_2 = null; |
||
| 137 | |||
| 138 | /** |
||
| 139 | * @var int $_x0032_3 |
||
| 140 | */ |
||
| 141 | protected $_x0032_3 = null; |
||
| 142 | |||
| 143 | /** |
||
| 144 | * @var int $_x0032_4 |
||
| 145 | */ |
||
| 146 | protected $_x0032_4 = null; |
||
| 147 | |||
| 148 | /** |
||
| 149 | * @var int $_x0032_5 |
||
| 150 | */ |
||
| 151 | protected $_x0032_5 = null; |
||
| 152 | |||
| 153 | /** |
||
| 154 | * @var int $_x0032_6 |
||
| 155 | */ |
||
| 156 | protected $_x0032_6 = null; |
||
| 157 | |||
| 158 | /** |
||
| 159 | * @var int $_x0032_7 |
||
| 160 | */ |
||
| 161 | protected $_x0032_7 = null; |
||
| 162 | |||
| 163 | /** |
||
| 164 | * @var int $_x0032_8 |
||
| 165 | */ |
||
| 166 | protected $_x0032_8 = null; |
||
| 167 | |||
| 168 | /** |
||
| 169 | * @var int $_x0032_9 |
||
| 170 | */ |
||
| 171 | protected $_x0032_9 = null; |
||
| 172 | |||
| 173 | /** |
||
| 174 | * @var int $_x0033_0 |
||
| 175 | */ |
||
| 176 | protected $_x0033_0 = null; |
||
| 177 | |||
| 178 | /** |
||
| 179 | * @var int $_x0033_1 |
||
| 180 | */ |
||
| 181 | protected $_x0033_1 = null; |
||
| 182 | |||
| 183 | /** |
||
| 184 | * @var int $_x0033_2 |
||
| 185 | */ |
||
| 186 | protected $_x0033_2 = null; |
||
| 187 | |||
| 188 | /** |
||
| 189 | * @var int $_x0033_3 |
||
| 190 | */ |
||
| 191 | protected $_x0033_3 = null; |
||
| 192 | |||
| 193 | /** |
||
| 194 | * @var int $_x0033_4 |
||
| 195 | */ |
||
| 196 | protected $_x0033_4 = null; |
||
| 197 | |||
| 198 | /** |
||
| 199 | * @var int $_x0033_5 |
||
| 200 | */ |
||
| 201 | protected $_x0033_5 = null; |
||
| 202 | |||
| 203 | /** |
||
| 204 | * @var int $_x0033_6 |
||
| 205 | */ |
||
| 206 | protected $_x0033_6 = null; |
||
| 207 | |||
| 208 | /** |
||
| 209 | * @var int $_x0033_7 |
||
| 210 | */ |
||
| 211 | protected $_x0033_7 = null; |
||
| 212 | |||
| 213 | /** |
||
| 214 | * @var int $_x0033_8 |
||
| 215 | */ |
||
| 216 | protected $_x0033_8 = null; |
||
| 217 | |||
| 218 | /** |
||
| 219 | * @var int $_x0033_9 |
||
| 220 | */ |
||
| 221 | protected $_x0033_9 = null; |
||
| 222 | |||
| 223 | /** |
||
| 224 | * @var int $_x0034_0 |
||
| 225 | */ |
||
| 226 | protected $_x0034_0 = null; |
||
| 227 | |||
| 228 | /** |
||
| 229 | * @var int $_x0034_1 |
||
| 230 | */ |
||
| 231 | protected $_x0034_1 = null; |
||
| 232 | |||
| 233 | /** |
||
| 234 | * @var int $_x0034_2 |
||
| 235 | */ |
||
| 236 | protected $_x0034_2 = null; |
||
| 237 | |||
| 238 | /** |
||
| 239 | * @var int $_x0034_3 |
||
| 240 | */ |
||
| 241 | protected $_x0034_3 = null; |
||
| 242 | |||
| 243 | /** |
||
| 244 | * @var int $_x0034_4 |
||
| 245 | */ |
||
| 246 | protected $_x0034_4 = null; |
||
| 247 | |||
| 248 | /** |
||
| 249 | * @var int $_x0034_5 |
||
| 250 | */ |
||
| 251 | protected $_x0034_5 = null; |
||
| 252 | |||
| 253 | /** |
||
| 254 | * @var int $_x0034_6 |
||
| 255 | */ |
||
| 256 | protected $_x0034_6 = null; |
||
| 257 | |||
| 258 | /** |
||
| 259 | * @var int $_x0034_7 |
||
| 260 | */ |
||
| 261 | protected $_x0034_7 = null; |
||
| 262 | |||
| 263 | /** |
||
| 264 | * @var int $_x0034_8 |
||
| 265 | */ |
||
| 266 | protected $_x0034_8 = null; |
||
| 267 | |||
| 268 | /** |
||
| 269 | * @var int $_x0034_9 |
||
| 270 | */ |
||
| 271 | protected $_x0034_9 = null; |
||
| 272 | |||
| 273 | /** |
||
| 274 | * @param string $ShortName |
||
| 275 | * @param int $ID_RoomType |
||
| 276 | * @param int $ID_AccommodationType |
||
| 277 | * @param int $_x0030_ |
||
| 278 | * @param int $_x0031_ |
||
| 279 | * @param int $_x0032_ |
||
| 280 | * @param int $_x0033_ |
||
| 281 | * @param int $_x0034_ |
||
| 282 | * @param int $_x0035_ |
||
| 283 | * @param int $_x0036_ |
||
| 284 | * @param int $_x0037_ |
||
| 285 | * @param int $_x0038_ |
||
| 286 | * @param int $_x0039_ |
||
| 287 | * @param int $_x0031_0 |
||
| 288 | * @param int $_x0031_1 |
||
| 289 | * @param int $_x0031_2 |
||
| 290 | * @param int $_x0031_3 |
||
| 291 | * @param int $_x0031_4 |
||
| 292 | * @param int $_x0031_5 |
||
| 293 | * @param int $_x0031_6 |
||
| 294 | * @param int $_x0031_7 |
||
| 295 | * @param int $_x0031_8 |
||
| 296 | * @param int $_x0031_9 |
||
| 297 | * @param int $_x0032_0 |
||
| 298 | * @param int $_x0032_1 |
||
| 299 | * @param int $_x0032_2 |
||
| 300 | * @param int $_x0032_3 |
||
| 301 | * @param int $_x0032_4 |
||
| 302 | * @param int $_x0032_5 |
||
| 303 | * @param int $_x0032_6 |
||
| 304 | * @param int $_x0032_7 |
||
| 305 | * @param int $_x0032_8 |
||
| 306 | * @param int $_x0032_9 |
||
| 307 | * @param int $_x0033_0 |
||
| 308 | * @param int $_x0033_1 |
||
| 309 | * @param int $_x0033_2 |
||
| 310 | * @param int $_x0033_3 |
||
| 311 | * @param int $_x0033_4 |
||
| 312 | * @param int $_x0033_5 |
||
| 313 | * @param int $_x0033_6 |
||
| 314 | * @param int $_x0033_7 |
||
| 315 | * @param int $_x0033_8 |
||
| 316 | * @param int $_x0033_9 |
||
| 317 | * @param int $_x0034_0 |
||
| 318 | * @param int $_x0034_1 |
||
| 319 | * @param int $_x0034_2 |
||
| 320 | * @param int $_x0034_3 |
||
| 321 | * @param int $_x0034_4 |
||
| 322 | * @param int $_x0034_5 |
||
| 323 | * @param int $_x0034_6 |
||
| 324 | * @param int $_x0034_7 |
||
| 325 | * @param int $_x0034_8 |
||
| 326 | * @param int $_x0034_9 |
||
| 327 | */ |
||
| 328 | public function __construct($ShortName, $ID_RoomType, $ID_AccommodationType, $_x0030_, $_x0031_, $_x0032_, $_x0033_, $_x0034_, $_x0035_, $_x0036_, $_x0037_, $_x0038_, $_x0039_, $_x0031_0, $_x0031_1, $_x0031_2, $_x0031_3, $_x0031_4, $_x0031_5, $_x0031_6, $_x0031_7, $_x0031_8, $_x0031_9, $_x0032_0, $_x0032_1, $_x0032_2, $_x0032_3, $_x0032_4, $_x0032_5, $_x0032_6, $_x0032_7, $_x0032_8, $_x0032_9, $_x0033_0, $_x0033_1, $_x0033_2, $_x0033_3, $_x0033_4, $_x0033_5, $_x0033_6, $_x0033_7, $_x0033_8, $_x0033_9, $_x0034_0, $_x0034_1, $_x0034_2, $_x0034_3, $_x0034_4, $_x0034_5, $_x0034_6, $_x0034_7, $_x0034_8, $_x0034_9) |
||
| 384 | |||
| 385 | /** |
||
| 386 | * @return string |
||
| 387 | */ |
||
| 388 | public function getShortName() |
||
| 392 | |||
| 393 | /** |
||
| 394 | * @param string $ShortName |
||
| 395 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 396 | */ |
||
| 397 | public function setShortName($ShortName) |
||
| 402 | |||
| 403 | /** |
||
| 404 | * @return int |
||
| 405 | */ |
||
| 406 | public function getID_RoomType() |
||
| 410 | |||
| 411 | /** |
||
| 412 | * @param int $ID_RoomType |
||
| 413 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 414 | */ |
||
| 415 | public function setID_RoomType($ID_RoomType) |
||
| 420 | |||
| 421 | /** |
||
| 422 | * @return int |
||
| 423 | */ |
||
| 424 | public function getID_AccommodationType() |
||
| 428 | |||
| 429 | /** |
||
| 430 | * @param int $ID_AccommodationType |
||
| 431 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 432 | */ |
||
| 433 | public function setID_AccommodationType($ID_AccommodationType) |
||
| 438 | |||
| 439 | /** |
||
| 440 | * @return int |
||
| 441 | */ |
||
| 442 | public function get_x0030_() |
||
| 446 | |||
| 447 | /** |
||
| 448 | * @param int $_x0030_ |
||
| 449 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 450 | */ |
||
| 451 | public function set_x0030_($_x0030_) |
||
| 456 | |||
| 457 | /** |
||
| 458 | * @return int |
||
| 459 | */ |
||
| 460 | public function get_x0031_() |
||
| 464 | |||
| 465 | /** |
||
| 466 | * @param int $_x0031_ |
||
| 467 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 468 | */ |
||
| 469 | public function set_x0031_($_x0031_) |
||
| 474 | |||
| 475 | /** |
||
| 476 | * @return int |
||
| 477 | */ |
||
| 478 | public function get_x0032_() |
||
| 482 | |||
| 483 | /** |
||
| 484 | * @param int $_x0032_ |
||
| 485 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 486 | */ |
||
| 487 | public function set_x0032_($_x0032_) |
||
| 492 | |||
| 493 | /** |
||
| 494 | * @return int |
||
| 495 | */ |
||
| 496 | public function get_x0033_() |
||
| 500 | |||
| 501 | /** |
||
| 502 | * @param int $_x0033_ |
||
| 503 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 504 | */ |
||
| 505 | public function set_x0033_($_x0033_) |
||
| 510 | |||
| 511 | /** |
||
| 512 | * @return int |
||
| 513 | */ |
||
| 514 | public function get_x0034_() |
||
| 518 | |||
| 519 | /** |
||
| 520 | * @param int $_x0034_ |
||
| 521 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 522 | */ |
||
| 523 | public function set_x0034_($_x0034_) |
||
| 528 | |||
| 529 | /** |
||
| 530 | * @return int |
||
| 531 | */ |
||
| 532 | public function get_x0035_() |
||
| 536 | |||
| 537 | /** |
||
| 538 | * @param int $_x0035_ |
||
| 539 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 540 | */ |
||
| 541 | public function set_x0035_($_x0035_) |
||
| 546 | |||
| 547 | /** |
||
| 548 | * @return int |
||
| 549 | */ |
||
| 550 | public function get_x0036_() |
||
| 554 | |||
| 555 | /** |
||
| 556 | * @param int $_x0036_ |
||
| 557 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 558 | */ |
||
| 559 | public function set_x0036_($_x0036_) |
||
| 564 | |||
| 565 | /** |
||
| 566 | * @return int |
||
| 567 | */ |
||
| 568 | public function get_x0037_() |
||
| 572 | |||
| 573 | /** |
||
| 574 | * @param int $_x0037_ |
||
| 575 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 576 | */ |
||
| 577 | public function set_x0037_($_x0037_) |
||
| 582 | |||
| 583 | /** |
||
| 584 | * @return int |
||
| 585 | */ |
||
| 586 | public function get_x0038_() |
||
| 590 | |||
| 591 | /** |
||
| 592 | * @param int $_x0038_ |
||
| 593 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 594 | */ |
||
| 595 | public function set_x0038_($_x0038_) |
||
| 600 | |||
| 601 | /** |
||
| 602 | * @return int |
||
| 603 | */ |
||
| 604 | public function get_x0039_() |
||
| 608 | |||
| 609 | /** |
||
| 610 | * @param int $_x0039_ |
||
| 611 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 612 | */ |
||
| 613 | public function set_x0039_($_x0039_) |
||
| 618 | |||
| 619 | /** |
||
| 620 | * @return int |
||
| 621 | */ |
||
| 622 | public function get_x0031_0() |
||
| 626 | |||
| 627 | /** |
||
| 628 | * @param int $_x0031_0 |
||
| 629 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 630 | */ |
||
| 631 | public function set_x0031_0($_x0031_0) |
||
| 636 | |||
| 637 | /** |
||
| 638 | * @return int |
||
| 639 | */ |
||
| 640 | public function get_x0031_1() |
||
| 644 | |||
| 645 | /** |
||
| 646 | * @param int $_x0031_1 |
||
| 647 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 648 | */ |
||
| 649 | public function set_x0031_1($_x0031_1) |
||
| 654 | |||
| 655 | /** |
||
| 656 | * @return int |
||
| 657 | */ |
||
| 658 | public function get_x0031_2() |
||
| 662 | |||
| 663 | /** |
||
| 664 | * @param int $_x0031_2 |
||
| 665 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 666 | */ |
||
| 667 | public function set_x0031_2($_x0031_2) |
||
| 672 | |||
| 673 | /** |
||
| 674 | * @return int |
||
| 675 | */ |
||
| 676 | public function get_x0031_3() |
||
| 680 | |||
| 681 | /** |
||
| 682 | * @param int $_x0031_3 |
||
| 683 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 684 | */ |
||
| 685 | public function set_x0031_3($_x0031_3) |
||
| 690 | |||
| 691 | /** |
||
| 692 | * @return int |
||
| 693 | */ |
||
| 694 | public function get_x0031_4() |
||
| 698 | |||
| 699 | /** |
||
| 700 | * @param int $_x0031_4 |
||
| 701 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 702 | */ |
||
| 703 | public function set_x0031_4($_x0031_4) |
||
| 708 | |||
| 709 | /** |
||
| 710 | * @return int |
||
| 711 | */ |
||
| 712 | public function get_x0031_5() |
||
| 716 | |||
| 717 | /** |
||
| 718 | * @param int $_x0031_5 |
||
| 719 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 720 | */ |
||
| 721 | public function set_x0031_5($_x0031_5) |
||
| 726 | |||
| 727 | /** |
||
| 728 | * @return int |
||
| 729 | */ |
||
| 730 | public function get_x0031_6() |
||
| 734 | |||
| 735 | /** |
||
| 736 | * @param int $_x0031_6 |
||
| 737 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 738 | */ |
||
| 739 | public function set_x0031_6($_x0031_6) |
||
| 744 | |||
| 745 | /** |
||
| 746 | * @return int |
||
| 747 | */ |
||
| 748 | public function get_x0031_7() |
||
| 752 | |||
| 753 | /** |
||
| 754 | * @param int $_x0031_7 |
||
| 755 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 756 | */ |
||
| 757 | public function set_x0031_7($_x0031_7) |
||
| 762 | |||
| 763 | /** |
||
| 764 | * @return int |
||
| 765 | */ |
||
| 766 | public function get_x0031_8() |
||
| 770 | |||
| 771 | /** |
||
| 772 | * @param int $_x0031_8 |
||
| 773 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 774 | */ |
||
| 775 | public function set_x0031_8($_x0031_8) |
||
| 780 | |||
| 781 | /** |
||
| 782 | * @return int |
||
| 783 | */ |
||
| 784 | public function get_x0031_9() |
||
| 788 | |||
| 789 | /** |
||
| 790 | * @param int $_x0031_9 |
||
| 791 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 792 | */ |
||
| 793 | public function set_x0031_9($_x0031_9) |
||
| 798 | |||
| 799 | /** |
||
| 800 | * @return int |
||
| 801 | */ |
||
| 802 | public function get_x0032_0() |
||
| 806 | |||
| 807 | /** |
||
| 808 | * @param int $_x0032_0 |
||
| 809 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 810 | */ |
||
| 811 | public function set_x0032_0($_x0032_0) |
||
| 816 | |||
| 817 | /** |
||
| 818 | * @return int |
||
| 819 | */ |
||
| 820 | public function get_x0032_1() |
||
| 824 | |||
| 825 | /** |
||
| 826 | * @param int $_x0032_1 |
||
| 827 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 828 | */ |
||
| 829 | public function set_x0032_1($_x0032_1) |
||
| 834 | |||
| 835 | /** |
||
| 836 | * @return int |
||
| 837 | */ |
||
| 838 | public function get_x0032_2() |
||
| 842 | |||
| 843 | /** |
||
| 844 | * @param int $_x0032_2 |
||
| 845 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 846 | */ |
||
| 847 | public function set_x0032_2($_x0032_2) |
||
| 852 | |||
| 853 | /** |
||
| 854 | * @return int |
||
| 855 | */ |
||
| 856 | public function get_x0032_3() |
||
| 860 | |||
| 861 | /** |
||
| 862 | * @param int $_x0032_3 |
||
| 863 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 864 | */ |
||
| 865 | public function set_x0032_3($_x0032_3) |
||
| 870 | |||
| 871 | /** |
||
| 872 | * @return int |
||
| 873 | */ |
||
| 874 | public function get_x0032_4() |
||
| 878 | |||
| 879 | /** |
||
| 880 | * @param int $_x0032_4 |
||
| 881 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 882 | */ |
||
| 883 | public function set_x0032_4($_x0032_4) |
||
| 888 | |||
| 889 | /** |
||
| 890 | * @return int |
||
| 891 | */ |
||
| 892 | public function get_x0032_5() |
||
| 896 | |||
| 897 | /** |
||
| 898 | * @param int $_x0032_5 |
||
| 899 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 900 | */ |
||
| 901 | public function set_x0032_5($_x0032_5) |
||
| 906 | |||
| 907 | /** |
||
| 908 | * @return int |
||
| 909 | */ |
||
| 910 | public function get_x0032_6() |
||
| 914 | |||
| 915 | /** |
||
| 916 | * @param int $_x0032_6 |
||
| 917 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 918 | */ |
||
| 919 | public function set_x0032_6($_x0032_6) |
||
| 924 | |||
| 925 | /** |
||
| 926 | * @return int |
||
| 927 | */ |
||
| 928 | public function get_x0032_7() |
||
| 932 | |||
| 933 | /** |
||
| 934 | * @param int $_x0032_7 |
||
| 935 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 936 | */ |
||
| 937 | public function set_x0032_7($_x0032_7) |
||
| 942 | |||
| 943 | /** |
||
| 944 | * @return int |
||
| 945 | */ |
||
| 946 | public function get_x0032_8() |
||
| 950 | |||
| 951 | /** |
||
| 952 | * @param int $_x0032_8 |
||
| 953 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 954 | */ |
||
| 955 | public function set_x0032_8($_x0032_8) |
||
| 960 | |||
| 961 | /** |
||
| 962 | * @return int |
||
| 963 | */ |
||
| 964 | public function get_x0032_9() |
||
| 968 | |||
| 969 | /** |
||
| 970 | * @param int $_x0032_9 |
||
| 971 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 972 | */ |
||
| 973 | public function set_x0032_9($_x0032_9) |
||
| 978 | |||
| 979 | /** |
||
| 980 | * @return int |
||
| 981 | */ |
||
| 982 | public function get_x0033_0() |
||
| 986 | |||
| 987 | /** |
||
| 988 | * @param int $_x0033_0 |
||
| 989 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 990 | */ |
||
| 991 | public function set_x0033_0($_x0033_0) |
||
| 996 | |||
| 997 | /** |
||
| 998 | * @return int |
||
| 999 | */ |
||
| 1000 | public function get_x0033_1() |
||
| 1004 | |||
| 1005 | /** |
||
| 1006 | * @param int $_x0033_1 |
||
| 1007 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1008 | */ |
||
| 1009 | public function set_x0033_1($_x0033_1) |
||
| 1014 | |||
| 1015 | /** |
||
| 1016 | * @return int |
||
| 1017 | */ |
||
| 1018 | public function get_x0033_2() |
||
| 1022 | |||
| 1023 | /** |
||
| 1024 | * @param int $_x0033_2 |
||
| 1025 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1026 | */ |
||
| 1027 | public function set_x0033_2($_x0033_2) |
||
| 1032 | |||
| 1033 | /** |
||
| 1034 | * @return int |
||
| 1035 | */ |
||
| 1036 | public function get_x0033_3() |
||
| 1040 | |||
| 1041 | /** |
||
| 1042 | * @param int $_x0033_3 |
||
| 1043 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1044 | */ |
||
| 1045 | public function set_x0033_3($_x0033_3) |
||
| 1050 | |||
| 1051 | /** |
||
| 1052 | * @return int |
||
| 1053 | */ |
||
| 1054 | public function get_x0033_4() |
||
| 1058 | |||
| 1059 | /** |
||
| 1060 | * @param int $_x0033_4 |
||
| 1061 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1062 | */ |
||
| 1063 | public function set_x0033_4($_x0033_4) |
||
| 1068 | |||
| 1069 | /** |
||
| 1070 | * @return int |
||
| 1071 | */ |
||
| 1072 | public function get_x0033_5() |
||
| 1076 | |||
| 1077 | /** |
||
| 1078 | * @param int $_x0033_5 |
||
| 1079 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1080 | */ |
||
| 1081 | public function set_x0033_5($_x0033_5) |
||
| 1086 | |||
| 1087 | /** |
||
| 1088 | * @return int |
||
| 1089 | */ |
||
| 1090 | public function get_x0033_6() |
||
| 1094 | |||
| 1095 | /** |
||
| 1096 | * @param int $_x0033_6 |
||
| 1097 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1098 | */ |
||
| 1099 | public function set_x0033_6($_x0033_6) |
||
| 1104 | |||
| 1105 | /** |
||
| 1106 | * @return int |
||
| 1107 | */ |
||
| 1108 | public function get_x0033_7() |
||
| 1112 | |||
| 1113 | /** |
||
| 1114 | * @param int $_x0033_7 |
||
| 1115 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1116 | */ |
||
| 1117 | public function set_x0033_7($_x0033_7) |
||
| 1122 | |||
| 1123 | /** |
||
| 1124 | * @return int |
||
| 1125 | */ |
||
| 1126 | public function get_x0033_8() |
||
| 1130 | |||
| 1131 | /** |
||
| 1132 | * @param int $_x0033_8 |
||
| 1133 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1134 | */ |
||
| 1135 | public function set_x0033_8($_x0033_8) |
||
| 1140 | |||
| 1141 | /** |
||
| 1142 | * @return int |
||
| 1143 | */ |
||
| 1144 | public function get_x0033_9() |
||
| 1148 | |||
| 1149 | /** |
||
| 1150 | * @param int $_x0033_9 |
||
| 1151 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1152 | */ |
||
| 1153 | public function set_x0033_9($_x0033_9) |
||
| 1158 | |||
| 1159 | /** |
||
| 1160 | * @return int |
||
| 1161 | */ |
||
| 1162 | public function get_x0034_0() |
||
| 1166 | |||
| 1167 | /** |
||
| 1168 | * @param int $_x0034_0 |
||
| 1169 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1170 | */ |
||
| 1171 | public function set_x0034_0($_x0034_0) |
||
| 1176 | |||
| 1177 | /** |
||
| 1178 | * @return int |
||
| 1179 | */ |
||
| 1180 | public function get_x0034_1() |
||
| 1184 | |||
| 1185 | /** |
||
| 1186 | * @param int $_x0034_1 |
||
| 1187 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1188 | */ |
||
| 1189 | public function set_x0034_1($_x0034_1) |
||
| 1194 | |||
| 1195 | /** |
||
| 1196 | * @return int |
||
| 1197 | */ |
||
| 1198 | public function get_x0034_2() |
||
| 1202 | |||
| 1203 | /** |
||
| 1204 | * @param int $_x0034_2 |
||
| 1205 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1206 | */ |
||
| 1207 | public function set_x0034_2($_x0034_2) |
||
| 1212 | |||
| 1213 | /** |
||
| 1214 | * @return int |
||
| 1215 | */ |
||
| 1216 | public function get_x0034_3() |
||
| 1220 | |||
| 1221 | /** |
||
| 1222 | * @param int $_x0034_3 |
||
| 1223 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1224 | */ |
||
| 1225 | public function set_x0034_3($_x0034_3) |
||
| 1230 | |||
| 1231 | /** |
||
| 1232 | * @return int |
||
| 1233 | */ |
||
| 1234 | public function get_x0034_4() |
||
| 1238 | |||
| 1239 | /** |
||
| 1240 | * @param int $_x0034_4 |
||
| 1241 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1242 | */ |
||
| 1243 | public function set_x0034_4($_x0034_4) |
||
| 1248 | |||
| 1249 | /** |
||
| 1250 | * @return int |
||
| 1251 | */ |
||
| 1252 | public function get_x0034_5() |
||
| 1256 | |||
| 1257 | /** |
||
| 1258 | * @param int $_x0034_5 |
||
| 1259 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1260 | */ |
||
| 1261 | public function set_x0034_5($_x0034_5) |
||
| 1266 | |||
| 1267 | /** |
||
| 1268 | * @return int |
||
| 1269 | */ |
||
| 1270 | public function get_x0034_6() |
||
| 1274 | |||
| 1275 | /** |
||
| 1276 | * @param int $_x0034_6 |
||
| 1277 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1278 | */ |
||
| 1279 | public function set_x0034_6($_x0034_6) |
||
| 1284 | |||
| 1285 | /** |
||
| 1286 | * @return int |
||
| 1287 | */ |
||
| 1288 | public function get_x0034_7() |
||
| 1292 | |||
| 1293 | /** |
||
| 1294 | * @param int $_x0034_7 |
||
| 1295 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1296 | */ |
||
| 1297 | public function set_x0034_7($_x0034_7) |
||
| 1302 | |||
| 1303 | /** |
||
| 1304 | * @return int |
||
| 1305 | */ |
||
| 1306 | public function get_x0034_8() |
||
| 1310 | |||
| 1311 | /** |
||
| 1312 | * @param int $_x0034_8 |
||
| 1313 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1314 | */ |
||
| 1315 | public function set_x0034_8($_x0034_8) |
||
| 1320 | |||
| 1321 | /** |
||
| 1322 | * @return int |
||
| 1323 | */ |
||
| 1324 | public function get_x0034_9() |
||
| 1328 | |||
| 1329 | /** |
||
| 1330 | * @param int $_x0034_9 |
||
| 1331 | * @return \Gueststream\PMS\IQWare\API\dtAvailability |
||
| 1332 | */ |
||
| 1333 | public function set_x0034_9($_x0034_9) |
||
| 1338 | } |
||
| 1339 |