Complex classes like TOneChildExpressionType 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 TOneChildExpressionType, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
11 | class TOneChildExpressionType |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @property \MetadataV4\edm\Annotation[] $annotation |
||
16 | */ |
||
17 | private $annotation = array( |
||
18 | |||
19 | ); |
||
20 | |||
21 | /** |
||
22 | * @property string $binary |
||
23 | */ |
||
24 | private $binary = null; |
||
25 | |||
26 | /** |
||
27 | * @property boolean $bool |
||
28 | */ |
||
29 | private $bool = null; |
||
30 | |||
31 | /** |
||
32 | * @property \DateTime $date |
||
33 | */ |
||
34 | private $date = null; |
||
35 | |||
36 | /** |
||
37 | * @property \DateTime $dateTimeOffset |
||
38 | */ |
||
39 | private $dateTimeOffset = null; |
||
40 | |||
41 | /** |
||
42 | * @property float $decimal |
||
43 | */ |
||
44 | private $decimal = null; |
||
45 | |||
46 | /** |
||
47 | * @property \DateInterval $duration |
||
48 | */ |
||
49 | private $duration = null; |
||
50 | |||
51 | /** |
||
52 | * @property string[] $enumMember |
||
53 | */ |
||
54 | private $enumMember = null; |
||
55 | |||
56 | /** |
||
57 | * @property float $float |
||
58 | */ |
||
59 | private $float = null; |
||
60 | |||
61 | /** |
||
62 | * @property string $guid |
||
63 | */ |
||
64 | private $guid = null; |
||
65 | |||
66 | /** |
||
67 | * @property integer $int |
||
68 | */ |
||
69 | private $int = null; |
||
70 | |||
71 | /** |
||
72 | * @property string $string |
||
73 | */ |
||
74 | private $string = null; |
||
75 | |||
76 | /** |
||
77 | * @property \DateTime $timeOfDay |
||
78 | */ |
||
79 | private $timeOfDay = null; |
||
80 | |||
81 | /** |
||
82 | * @property string $annotationPath |
||
83 | */ |
||
84 | private $annotationPath = null; |
||
85 | |||
86 | /** |
||
87 | * @property \MetadataV4\edm\TApplyExpressionType $apply |
||
88 | */ |
||
89 | private $apply = null; |
||
90 | |||
91 | /** |
||
92 | * @property \MetadataV4\edm\TCastOrIsOfExpressionType $cast |
||
93 | */ |
||
94 | private $cast = null; |
||
95 | |||
96 | /** |
||
97 | * @property \MetadataV4\edm\TCollectionExpressionType $collection |
||
98 | */ |
||
99 | private $collection = null; |
||
100 | |||
101 | /** |
||
102 | * @property \MetadataV4\edm\TIfExpressionType $if |
||
103 | */ |
||
104 | private $if = null; |
||
105 | |||
106 | /** |
||
107 | * @property \MetadataV4\edm\TTwoChildrenExpressionType $eq |
||
108 | */ |
||
109 | private $eq = null; |
||
110 | |||
111 | /** |
||
112 | * @property \MetadataV4\edm\TTwoChildrenExpressionType $ne |
||
113 | */ |
||
114 | private $ne = null; |
||
115 | |||
116 | /** |
||
117 | * @property \MetadataV4\edm\TTwoChildrenExpressionType $ge |
||
118 | */ |
||
119 | private $ge = null; |
||
120 | |||
121 | /** |
||
122 | * @property \MetadataV4\edm\TTwoChildrenExpressionType $gt |
||
123 | */ |
||
124 | private $gt = null; |
||
125 | |||
126 | /** |
||
127 | * @property \MetadataV4\edm\TTwoChildrenExpressionType $le |
||
128 | */ |
||
129 | private $le = null; |
||
130 | |||
131 | /** |
||
132 | * @property \MetadataV4\edm\TTwoChildrenExpressionType $lt |
||
133 | */ |
||
134 | private $lt = null; |
||
135 | |||
136 | /** |
||
137 | * @property \MetadataV4\edm\TTwoChildrenExpressionType $and |
||
138 | */ |
||
139 | private $and = null; |
||
140 | |||
141 | /** |
||
142 | * @property \MetadataV4\edm\TTwoChildrenExpressionType $or |
||
143 | */ |
||
144 | private $or = null; |
||
145 | |||
146 | /** |
||
147 | * @property \MetadataV4\edm\TOneChildExpressionType $not |
||
148 | */ |
||
149 | private $not = null; |
||
150 | |||
151 | /** |
||
152 | * @property \MetadataV4\edm\TCastOrIsOfExpressionType $isOf |
||
153 | */ |
||
154 | private $isOf = null; |
||
155 | |||
156 | /** |
||
157 | * @property \MetadataV4\edm\TLabeledElementExpressionType $labeledElement |
||
158 | */ |
||
159 | private $labeledElement = null; |
||
160 | |||
161 | /** |
||
162 | * @property string $labeledElementReference |
||
163 | */ |
||
164 | private $labeledElementReference = null; |
||
165 | |||
166 | /** |
||
167 | * @property \MetadataV4\edm\Annotation[] $null |
||
168 | */ |
||
169 | private $null = null; |
||
170 | |||
171 | /** |
||
172 | * @property string $navigationPropertyPath |
||
173 | */ |
||
174 | private $navigationPropertyPath = null; |
||
175 | |||
176 | /** |
||
177 | * @property string $path |
||
178 | */ |
||
179 | private $path = null; |
||
180 | |||
181 | /** |
||
182 | * @property string $propertyPath |
||
183 | */ |
||
184 | private $propertyPath = null; |
||
185 | |||
186 | /** |
||
187 | * @property \MetadataV4\edm\TRecordExpressionType $record |
||
188 | */ |
||
189 | private $record = null; |
||
190 | |||
191 | /** |
||
192 | * @property \MetadataV4\edm\TOneChildExpressionType $urlRef |
||
193 | */ |
||
194 | private $urlRef = null; |
||
195 | |||
196 | /** |
||
197 | * Adds as annotation |
||
198 | * |
||
199 | * @return self |
||
200 | * @param \MetadataV4\edm\Annotation $annotation |
||
201 | */ |
||
202 | public function addToAnnotation(\MetadataV4\edm\Annotation $annotation) |
||
207 | |||
208 | /** |
||
209 | * isset annotation |
||
210 | * |
||
211 | * @param scalar $index |
||
212 | * @return boolean |
||
213 | */ |
||
214 | public function issetAnnotation($index) |
||
218 | |||
219 | /** |
||
220 | * unset annotation |
||
221 | * |
||
222 | * @param scalar $index |
||
223 | * @return void |
||
224 | */ |
||
225 | public function unsetAnnotation($index) |
||
229 | |||
230 | /** |
||
231 | * Gets as annotation |
||
232 | * |
||
233 | * @return \MetadataV4\edm\Annotation[] |
||
234 | */ |
||
235 | public function getAnnotation() |
||
239 | |||
240 | /** |
||
241 | * Sets a new annotation |
||
242 | * |
||
243 | * @param \MetadataV4\edm\Annotation[] $annotation |
||
244 | * @return self |
||
245 | */ |
||
246 | public function setAnnotation(array $annotation) |
||
251 | |||
252 | /** |
||
253 | * Gets as binary |
||
254 | * |
||
255 | * @return string |
||
256 | */ |
||
257 | public function getBinary() |
||
261 | |||
262 | /** |
||
263 | * Sets a new binary |
||
264 | * |
||
265 | * @param string $binary |
||
266 | * @return self |
||
267 | */ |
||
268 | public function setBinary($binary) |
||
273 | |||
274 | /** |
||
275 | * Gets as bool |
||
276 | * |
||
277 | * @return boolean |
||
278 | */ |
||
279 | public function getBool() |
||
283 | |||
284 | /** |
||
285 | * Sets a new bool |
||
286 | * |
||
287 | * @param boolean $bool |
||
288 | * @return self |
||
289 | */ |
||
290 | public function setBool($bool) |
||
295 | |||
296 | /** |
||
297 | * Gets as date |
||
298 | * |
||
299 | * @return \DateTime |
||
300 | */ |
||
301 | public function getDate() |
||
305 | |||
306 | /** |
||
307 | * Sets a new date |
||
308 | * |
||
309 | * @param \DateTime $date |
||
310 | * @return self |
||
311 | */ |
||
312 | public function setDate(\DateTime $date) |
||
317 | |||
318 | /** |
||
319 | * Gets as dateTimeOffset |
||
320 | * |
||
321 | * @return \DateTime |
||
322 | */ |
||
323 | public function getDateTimeOffset() |
||
327 | |||
328 | /** |
||
329 | * Sets a new dateTimeOffset |
||
330 | * |
||
331 | * @param \DateTime $dateTimeOffset |
||
332 | * @return self |
||
333 | */ |
||
334 | public function setDateTimeOffset(\DateTime $dateTimeOffset) |
||
339 | |||
340 | /** |
||
341 | * Gets as decimal |
||
342 | * |
||
343 | * @return float |
||
344 | */ |
||
345 | public function getDecimal() |
||
349 | |||
350 | /** |
||
351 | * Sets a new decimal |
||
352 | * |
||
353 | * @param float $decimal |
||
354 | * @return self |
||
355 | */ |
||
356 | public function setDecimal($decimal) |
||
361 | |||
362 | /** |
||
363 | * Gets as duration |
||
364 | * |
||
365 | * @return \DateInterval |
||
366 | */ |
||
367 | public function getDuration() |
||
371 | |||
372 | /** |
||
373 | * Sets a new duration |
||
374 | * |
||
375 | * @param \DateInterval $duration |
||
376 | * @return self |
||
377 | */ |
||
378 | public function setDuration(\DateInterval $duration) |
||
383 | |||
384 | /** |
||
385 | * Adds as enumMember |
||
386 | * |
||
387 | * @return self |
||
388 | * @param string $enumMember |
||
389 | */ |
||
390 | public function addToEnumMember($enumMember) |
||
395 | |||
396 | /** |
||
397 | * isset enumMember |
||
398 | * |
||
399 | * @param scalar $index |
||
400 | * @return boolean |
||
401 | */ |
||
402 | public function issetEnumMember($index) |
||
406 | |||
407 | /** |
||
408 | * unset enumMember |
||
409 | * |
||
410 | * @param scalar $index |
||
411 | * @return void |
||
412 | */ |
||
413 | public function unsetEnumMember($index) |
||
417 | |||
418 | /** |
||
419 | * Gets as enumMember |
||
420 | * |
||
421 | * @return string[] |
||
422 | */ |
||
423 | public function getEnumMember() |
||
427 | |||
428 | /** |
||
429 | * Sets a new enumMember |
||
430 | * |
||
431 | * @param string $enumMember |
||
432 | * @return self |
||
433 | */ |
||
434 | public function setEnumMember(array $enumMember) |
||
439 | |||
440 | /** |
||
441 | * Gets as float |
||
442 | * |
||
443 | * @return float |
||
444 | */ |
||
445 | public function getFloat() |
||
449 | |||
450 | /** |
||
451 | * Sets a new float |
||
452 | * |
||
453 | * @param float $float |
||
454 | * @return self |
||
455 | */ |
||
456 | public function setFloat($float) |
||
461 | |||
462 | /** |
||
463 | * Gets as guid |
||
464 | * |
||
465 | * @return string |
||
466 | */ |
||
467 | public function getGuid() |
||
471 | |||
472 | /** |
||
473 | * Sets a new guid |
||
474 | * |
||
475 | * @param string $guid |
||
476 | * @return self |
||
477 | */ |
||
478 | public function setGuid($guid) |
||
483 | |||
484 | /** |
||
485 | * Gets as int |
||
486 | * |
||
487 | * @return integer |
||
488 | */ |
||
489 | public function getInt() |
||
493 | |||
494 | /** |
||
495 | * Sets a new int |
||
496 | * |
||
497 | * @param integer $int |
||
498 | * @return self |
||
499 | */ |
||
500 | public function setInt($int) |
||
505 | |||
506 | /** |
||
507 | * Gets as string |
||
508 | * |
||
509 | * @return string |
||
510 | */ |
||
511 | public function getString() |
||
515 | |||
516 | /** |
||
517 | * Sets a new string |
||
518 | * |
||
519 | * @param string $string |
||
520 | * @return self |
||
521 | */ |
||
522 | public function setString($string) |
||
527 | |||
528 | /** |
||
529 | * Gets as timeOfDay |
||
530 | * |
||
531 | * @return \DateTime |
||
532 | */ |
||
533 | public function getTimeOfDay() |
||
537 | |||
538 | /** |
||
539 | * Sets a new timeOfDay |
||
540 | * |
||
541 | * @param \DateTime $timeOfDay |
||
542 | * @return self |
||
543 | */ |
||
544 | public function setTimeOfDay(\DateTime $timeOfDay) |
||
549 | |||
550 | /** |
||
551 | * Gets as annotationPath |
||
552 | * |
||
553 | * @return string |
||
554 | */ |
||
555 | public function getAnnotationPath() |
||
559 | |||
560 | /** |
||
561 | * Sets a new annotationPath |
||
562 | * |
||
563 | * @param string $annotationPath |
||
564 | * @return self |
||
565 | */ |
||
566 | public function setAnnotationPath($annotationPath) |
||
571 | |||
572 | /** |
||
573 | * Gets as apply |
||
574 | * |
||
575 | * @return \MetadataV4\edm\TApplyExpressionType |
||
576 | */ |
||
577 | public function getApply() |
||
581 | |||
582 | /** |
||
583 | * Sets a new apply |
||
584 | * |
||
585 | * @param \MetadataV4\edm\TApplyExpressionType $apply |
||
586 | * @return self |
||
587 | */ |
||
588 | public function setApply(\MetadataV4\edm\TApplyExpressionType $apply) |
||
593 | |||
594 | /** |
||
595 | * Gets as cast |
||
596 | * |
||
597 | * @return \MetadataV4\edm\TCastOrIsOfExpressionType |
||
598 | */ |
||
599 | public function getCast() |
||
603 | |||
604 | /** |
||
605 | * Sets a new cast |
||
606 | * |
||
607 | * @param \MetadataV4\edm\TCastOrIsOfExpressionType $cast |
||
608 | * @return self |
||
609 | */ |
||
610 | public function setCast(\MetadataV4\edm\TCastOrIsOfExpressionType $cast) |
||
615 | |||
616 | /** |
||
617 | * Gets as collection |
||
618 | * |
||
619 | * @return \MetadataV4\edm\TCollectionExpressionType |
||
620 | */ |
||
621 | public function getCollection() |
||
625 | |||
626 | /** |
||
627 | * Sets a new collection |
||
628 | * |
||
629 | * @param \MetadataV4\edm\TCollectionExpressionType $collection |
||
630 | * @return self |
||
631 | */ |
||
632 | public function setCollection(\MetadataV4\edm\TCollectionExpressionType $collection) |
||
637 | |||
638 | /** |
||
639 | * Gets as if |
||
640 | * |
||
641 | * @return \MetadataV4\edm\TIfExpressionType |
||
642 | */ |
||
643 | public function getIf() |
||
647 | |||
648 | /** |
||
649 | * Sets a new if |
||
650 | * |
||
651 | * @param \MetadataV4\edm\TIfExpressionType $if |
||
652 | * @return self |
||
653 | */ |
||
654 | public function setIf(\MetadataV4\edm\TIfExpressionType $if) |
||
659 | |||
660 | /** |
||
661 | * Gets as eq |
||
662 | * |
||
663 | * @return \MetadataV4\edm\TTwoChildrenExpressionType |
||
664 | */ |
||
665 | public function getEq() |
||
669 | |||
670 | /** |
||
671 | * Sets a new eq |
||
672 | * |
||
673 | * @param \MetadataV4\edm\TTwoChildrenExpressionType $eq |
||
674 | * @return self |
||
675 | */ |
||
676 | public function setEq(\MetadataV4\edm\TTwoChildrenExpressionType $eq) |
||
681 | |||
682 | /** |
||
683 | * Gets as ne |
||
684 | * |
||
685 | * @return \MetadataV4\edm\TTwoChildrenExpressionType |
||
686 | */ |
||
687 | public function getNe() |
||
691 | |||
692 | /** |
||
693 | * Sets a new ne |
||
694 | * |
||
695 | * @param \MetadataV4\edm\TTwoChildrenExpressionType $ne |
||
696 | * @return self |
||
697 | */ |
||
698 | public function setNe(\MetadataV4\edm\TTwoChildrenExpressionType $ne) |
||
703 | |||
704 | /** |
||
705 | * Gets as ge |
||
706 | * |
||
707 | * @return \MetadataV4\edm\TTwoChildrenExpressionType |
||
708 | */ |
||
709 | public function getGe() |
||
713 | |||
714 | /** |
||
715 | * Sets a new ge |
||
716 | * |
||
717 | * @param \MetadataV4\edm\TTwoChildrenExpressionType $ge |
||
718 | * @return self |
||
719 | */ |
||
720 | public function setGe(\MetadataV4\edm\TTwoChildrenExpressionType $ge) |
||
725 | |||
726 | /** |
||
727 | * Gets as gt |
||
728 | * |
||
729 | * @return \MetadataV4\edm\TTwoChildrenExpressionType |
||
730 | */ |
||
731 | public function getGt() |
||
735 | |||
736 | /** |
||
737 | * Sets a new gt |
||
738 | * |
||
739 | * @param \MetadataV4\edm\TTwoChildrenExpressionType $gt |
||
740 | * @return self |
||
741 | */ |
||
742 | public function setGt(\MetadataV4\edm\TTwoChildrenExpressionType $gt) |
||
747 | |||
748 | /** |
||
749 | * Gets as le |
||
750 | * |
||
751 | * @return \MetadataV4\edm\TTwoChildrenExpressionType |
||
752 | */ |
||
753 | public function getLe() |
||
757 | |||
758 | /** |
||
759 | * Sets a new le |
||
760 | * |
||
761 | * @param \MetadataV4\edm\TTwoChildrenExpressionType $le |
||
762 | * @return self |
||
763 | */ |
||
764 | public function setLe(\MetadataV4\edm\TTwoChildrenExpressionType $le) |
||
769 | |||
770 | /** |
||
771 | * Gets as lt |
||
772 | * |
||
773 | * @return \MetadataV4\edm\TTwoChildrenExpressionType |
||
774 | */ |
||
775 | public function getLt() |
||
779 | |||
780 | /** |
||
781 | * Sets a new lt |
||
782 | * |
||
783 | * @param \MetadataV4\edm\TTwoChildrenExpressionType $lt |
||
784 | * @return self |
||
785 | */ |
||
786 | public function setLt(\MetadataV4\edm\TTwoChildrenExpressionType $lt) |
||
791 | |||
792 | /** |
||
793 | * Gets as and |
||
794 | * |
||
795 | * @return \MetadataV4\edm\TTwoChildrenExpressionType |
||
796 | */ |
||
797 | public function getAnd() |
||
801 | |||
802 | /** |
||
803 | * Sets a new and |
||
804 | * |
||
805 | * @param \MetadataV4\edm\TTwoChildrenExpressionType $and |
||
806 | * @return self |
||
807 | */ |
||
808 | public function setAnd(\MetadataV4\edm\TTwoChildrenExpressionType $and) |
||
813 | |||
814 | /** |
||
815 | * Gets as or |
||
816 | * |
||
817 | * @return \MetadataV4\edm\TTwoChildrenExpressionType |
||
818 | */ |
||
819 | public function getOr() |
||
823 | |||
824 | /** |
||
825 | * Sets a new or |
||
826 | * |
||
827 | * @param \MetadataV4\edm\TTwoChildrenExpressionType $or |
||
828 | * @return self |
||
829 | */ |
||
830 | public function setOr(\MetadataV4\edm\TTwoChildrenExpressionType $or) |
||
835 | |||
836 | /** |
||
837 | * Gets as not |
||
838 | * |
||
839 | * @return \MetadataV4\edm\TOneChildExpressionType |
||
840 | */ |
||
841 | public function getNot() |
||
845 | |||
846 | /** |
||
847 | * Sets a new not |
||
848 | * |
||
849 | * @param \MetadataV4\edm\TOneChildExpressionType $not |
||
850 | * @return self |
||
851 | */ |
||
852 | public function setNot(\MetadataV4\edm\TOneChildExpressionType $not) |
||
857 | |||
858 | /** |
||
859 | * Gets as isOf |
||
860 | * |
||
861 | * @return \MetadataV4\edm\TCastOrIsOfExpressionType |
||
862 | */ |
||
863 | public function getIsOf() |
||
867 | |||
868 | /** |
||
869 | * Sets a new isOf |
||
870 | * |
||
871 | * @param \MetadataV4\edm\TCastOrIsOfExpressionType $isOf |
||
872 | * @return self |
||
873 | */ |
||
874 | public function setIsOf(\MetadataV4\edm\TCastOrIsOfExpressionType $isOf) |
||
879 | |||
880 | /** |
||
881 | * Gets as labeledElement |
||
882 | * |
||
883 | * @return \MetadataV4\edm\TLabeledElementExpressionType |
||
884 | */ |
||
885 | public function getLabeledElement() |
||
889 | |||
890 | /** |
||
891 | * Sets a new labeledElement |
||
892 | * |
||
893 | * @param \MetadataV4\edm\TLabeledElementExpressionType $labeledElement |
||
894 | * @return self |
||
895 | */ |
||
896 | public function setLabeledElement(\MetadataV4\edm\TLabeledElementExpressionType $labeledElement) |
||
901 | |||
902 | /** |
||
903 | * Gets as labeledElementReference |
||
904 | * |
||
905 | * @return string |
||
906 | */ |
||
907 | public function getLabeledElementReference() |
||
911 | |||
912 | /** |
||
913 | * Sets a new labeledElementReference |
||
914 | * |
||
915 | * @param string $labeledElementReference |
||
916 | * @return self |
||
917 | */ |
||
918 | public function setLabeledElementReference($labeledElementReference) |
||
923 | |||
924 | /** |
||
925 | * Adds as annotation |
||
926 | * |
||
927 | * @return self |
||
928 | * @param \MetadataV4\edm\Annotation $annotation |
||
929 | */ |
||
930 | public function addToNull(\MetadataV4\edm\Annotation $annotation) |
||
935 | |||
936 | /** |
||
937 | * isset null |
||
938 | * |
||
939 | * @param scalar $index |
||
940 | * @return boolean |
||
941 | */ |
||
942 | public function issetNull($index) |
||
946 | |||
947 | /** |
||
948 | * unset null |
||
949 | * |
||
950 | * @param scalar $index |
||
951 | * @return void |
||
952 | */ |
||
953 | public function unsetNull($index) |
||
957 | |||
958 | /** |
||
959 | * Gets as null |
||
960 | * |
||
961 | * @return \MetadataV4\edm\Annotation[] |
||
962 | */ |
||
963 | public function getNull() |
||
967 | |||
968 | /** |
||
969 | * Sets a new null |
||
970 | * |
||
971 | * @param \MetadataV4\edm\Annotation[] $null |
||
972 | * @return self |
||
973 | */ |
||
974 | public function setNull(array $null) |
||
979 | |||
980 | /** |
||
981 | * Gets as navigationPropertyPath |
||
982 | * |
||
983 | * @return string |
||
984 | */ |
||
985 | public function getNavigationPropertyPath() |
||
989 | |||
990 | /** |
||
991 | * Sets a new navigationPropertyPath |
||
992 | * |
||
993 | * @param string $navigationPropertyPath |
||
994 | * @return self |
||
995 | */ |
||
996 | public function setNavigationPropertyPath($navigationPropertyPath) |
||
1001 | |||
1002 | /** |
||
1003 | * Gets as path |
||
1004 | * |
||
1005 | * @return string |
||
1006 | */ |
||
1007 | public function getPath() |
||
1011 | |||
1012 | /** |
||
1013 | * Sets a new path |
||
1014 | * |
||
1015 | * @param string $path |
||
1016 | * @return self |
||
1017 | */ |
||
1018 | public function setPath($path) |
||
1023 | |||
1024 | /** |
||
1025 | * Gets as propertyPath |
||
1026 | * |
||
1027 | * @return string |
||
1028 | */ |
||
1029 | public function getPropertyPath() |
||
1033 | |||
1034 | /** |
||
1035 | * Sets a new propertyPath |
||
1036 | * |
||
1037 | * @param string $propertyPath |
||
1038 | * @return self |
||
1039 | */ |
||
1040 | public function setPropertyPath($propertyPath) |
||
1045 | |||
1046 | /** |
||
1047 | * Gets as record |
||
1048 | * |
||
1049 | * @return \MetadataV4\edm\TRecordExpressionType |
||
1050 | */ |
||
1051 | public function getRecord() |
||
1055 | |||
1056 | /** |
||
1057 | * Sets a new record |
||
1058 | * |
||
1059 | * @param \MetadataV4\edm\TRecordExpressionType $record |
||
1060 | * @return self |
||
1061 | */ |
||
1062 | public function setRecord(\MetadataV4\edm\TRecordExpressionType $record) |
||
1067 | |||
1068 | /** |
||
1069 | * Gets as urlRef |
||
1070 | * |
||
1071 | * @return \MetadataV4\edm\TOneChildExpressionType |
||
1072 | */ |
||
1073 | public function getUrlRef() |
||
1077 | |||
1078 | /** |
||
1079 | * Sets a new urlRef |
||
1080 | * |
||
1081 | * @param \MetadataV4\edm\TOneChildExpressionType $urlRef |
||
1082 | * @return self |
||
1083 | */ |
||
1084 | public function setUrlRef(\MetadataV4\edm\TOneChildExpressionType $urlRef) |
||
1089 | } |
||
1090 |