@sapui5/ts-types 1.101.1 → 1.102.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +89 -1
  4. package/types/sap.ca.ui.d.ts +1747 -124
  5. package/types/sap.chart.d.ts +375 -29
  6. package/types/sap.collaboration.d.ts +320 -40
  7. package/types/sap.esh.search.ui.d.ts +1 -669
  8. package/types/sap.f.d.ts +1785 -100
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +70 -2
  11. package/types/sap.fe.macros.d.ts +78 -34
  12. package/types/sap.fe.navigation.d.ts +144 -4
  13. package/types/sap.fe.templates.d.ts +26 -5
  14. package/types/sap.fe.test.d.ts +497 -2
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +7203 -502
  17. package/types/sap.insights.d.ts +80 -0
  18. package/types/sap.landvisz.d.ts +1015 -66
  19. package/types/sap.m.d.ts +16491 -1149
  20. package/types/sap.makit.d.ts +575 -54
  21. package/types/sap.me.d.ts +578 -51
  22. package/types/sap.ndc.d.ts +63 -5
  23. package/types/sap.ovp.d.ts +5 -6
  24. package/types/sap.rules.ui.d.ts +171 -15
  25. package/types/sap.sac.df.d.ts +1430 -215
  26. package/types/sap.sac.grid.d.ts +91 -8
  27. package/types/sap.suite.ui.commons.d.ts +5515 -396
  28. package/types/sap.suite.ui.generic.template.d.ts +157 -69
  29. package/types/sap.suite.ui.microchart.d.ts +1801 -160
  30. package/types/sap.tnt.d.ts +279 -19
  31. package/types/sap.ui.codeeditor.d.ts +89 -8
  32. package/types/sap.ui.commons.d.ts +3784 -313
  33. package/types/sap.ui.comp.d.ts +3853 -276
  34. package/types/sap.ui.core.d.ts +6248 -313
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +61 -6
  37. package/types/sap.ui.fl.d.ts +1 -1
  38. package/types/sap.ui.generic.app.d.ts +238 -64
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +316 -23
  41. package/types/sap.ui.layout.d.ts +1851 -199
  42. package/types/sap.ui.mdc.d.ts +1 -1
  43. package/types/sap.ui.richtexteditor.d.ts +340 -49
  44. package/types/sap.ui.rta.d.ts +5 -1
  45. package/types/sap.ui.suite.d.ts +87 -6
  46. package/types/sap.ui.support.d.ts +30 -1
  47. package/types/sap.ui.table.d.ts +1050 -80
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +2704 -202
  50. package/types/sap.ui.ux3.d.ts +2379 -181
  51. package/types/sap.ui.vbm.d.ts +2002 -197
  52. package/types/sap.ui.vk.d.ts +5353 -310
  53. package/types/sap.ui.vtm.d.ts +1130 -41
  54. package/types/sap.uiext.inbox.d.ts +423 -22
  55. package/types/sap.ushell.d.ts +1488 -49
  56. package/types/sap.ushell_abap.d.ts +4 -1
  57. package/types/sap.uxap.d.ts +902 -87
  58. package/types/sap.viz.d.ts +5514 -380
  59. package/types/sap.webanalytics.core.d.ts +1 -1
  60. package/types/sap.zen.commons.d.ts +165 -20
  61. package/types/sap.zen.crosstab.d.ts +217 -21
  62. package/types/sap.zen.dsh.d.ts +227 -14
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.101.0
1
+ // For Library Version: 1.102.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -17,26 +17,32 @@ declare namespace sap {
17
17
  */
18
18
  renderingSize?:
19
19
  | sap.landvisz.EntityCSSSize
20
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
20
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
21
+ | `{${string}}`;
21
22
 
22
23
  /**
23
24
  * source for the icon rendered
24
25
  */
25
26
  iconSrc?:
26
27
  | sap.ui.core.URI
27
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
28
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
29
+ | `{${string}}`;
28
30
 
29
31
  /**
30
32
  * type of the action
31
33
  */
32
34
  actionType?:
33
35
  | sap.landvisz.ActionType
34
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
36
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
37
+ | `{${string}}`;
35
38
 
36
39
  /**
37
40
  * data of menu items and sub items
38
41
  */
39
- menuData?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
42
+ menuData?:
43
+ | object
44
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
45
+ | `{${string}}`;
40
46
 
41
47
  /**
42
48
  * Tooltip for the action
@@ -46,12 +52,18 @@ declare namespace sap {
46
52
  /**
47
53
  * property to enable/disable actions
48
54
  */
49
- enable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
55
+ enable?:
56
+ | boolean
57
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
58
+ | `{${string}}`;
50
59
 
51
60
  /**
52
61
  * new type of view is loaded while performing the action.
53
62
  */
54
- changeView?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
63
+ changeView?:
64
+ | boolean
65
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
66
+ | `{${string}}`;
55
67
 
56
68
  /**
57
69
  * aggregation for menu items
@@ -59,7 +71,8 @@ declare namespace sap {
59
71
  menu?:
60
72
  | sap.ui.commons.Menu[]
61
73
  | sap.ui.commons.Menu
62
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
74
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
75
+ | `{${string}}`;
63
76
 
64
77
  /**
65
78
  * click on the action bar
@@ -76,21 +89,26 @@ declare namespace sap {
76
89
  /**
77
90
  * selected property of data header
78
91
  */
79
- selected?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
92
+ selected?:
93
+ | boolean
94
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
95
+ | `{${string}}`;
80
96
 
81
97
  /**
82
98
  * rendering size of the control
83
99
  */
84
100
  renderingSize?:
85
101
  | sap.landvisz.EntityCSSSize
86
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
102
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
103
+ | `{${string}}`;
87
104
 
88
105
  /**
89
106
  * type of landscape object
90
107
  */
91
108
  type?:
92
109
  | sap.landvisz.LandscapeObject
93
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
110
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
111
+ | `{${string}}`;
94
112
 
95
113
  /**
96
114
  * test
@@ -98,7 +116,8 @@ declare namespace sap {
98
116
  properties?:
99
117
  | sap.ui.core.Control[]
100
118
  | sap.ui.core.Control
101
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
119
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
120
+ | `{${string}}`;
102
121
 
103
122
  /**
104
123
  * the action to be carried out on selection of a tab
@@ -124,7 +143,8 @@ declare namespace sap {
124
143
  */
125
144
  iconSrc?:
126
145
  | sap.ui.core.URI
127
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
146
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
147
+ | `{${string}}`;
128
148
 
129
149
  /**
130
150
  * rendering size of the control
@@ -149,7 +169,8 @@ declare namespace sap {
149
169
  */
150
170
  renderingSize?:
151
171
  | sap.landvisz.EntityCSSSize
152
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
172
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
173
+ | `{${string}}`;
153
174
 
154
175
  /**
155
176
  * click on the action bar
@@ -171,14 +192,18 @@ declare namespace sap {
171
192
  /**
172
193
  * to select/deselect a header
173
194
  */
174
- selected?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
195
+ selected?:
196
+ | boolean
197
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
198
+ | `{${string}}`;
175
199
 
176
200
  /**
177
201
  * type of system
178
202
  */
179
203
  type?:
180
204
  | sap.landvisz.LandscapeObject
181
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
205
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
206
+ | `{${string}}`;
182
207
 
183
208
  /**
184
209
  * Event triggered when header is clicked
@@ -220,7 +245,8 @@ declare namespace sap {
220
245
  */
221
246
  renderingSize?:
222
247
  | sap.landvisz.EntityCSSSize
223
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
248
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
249
+ | `{${string}}`;
224
250
 
225
251
  /**
226
252
  * determines the default state of the control
@@ -237,7 +263,8 @@ declare namespace sap {
237
263
  */
238
264
  componentType?:
239
265
  | sap.landvisz.ComponentType
240
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
266
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
267
+ | `{${string}}`;
241
268
 
242
269
  /**
243
270
  * fires click event on selection
@@ -261,7 +288,8 @@ declare namespace sap {
261
288
  */
262
289
  renderingSize?:
263
290
  | sap.landvisz.EntityCSSSize
264
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
291
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
292
+ | `{${string}}`;
265
293
 
266
294
  /**
267
295
  * text of the icon dislayed in the row field
@@ -293,7 +321,10 @@ declare namespace sap {
293
321
  /**
294
322
  * determines if the product version are valid/invalid
295
323
  */
296
- invalidName?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
324
+ invalidName?:
325
+ | boolean
326
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
327
+ | `{${string}}`;
297
328
  }
298
329
 
299
330
  interface $ModelingStatusSettings extends sap.ui.core.$ControlSettings {
@@ -315,7 +346,10 @@ declare namespace sap {
315
346
  /**
316
347
  * tooltip for the icon
317
348
  */
318
- stateIconTooltip?: any | sap.ui.base.ManagedObject.PropertyBindingInfo;
349
+ stateIconTooltip?:
350
+ | any
351
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
352
+ | `{${string}}`;
319
353
  }
320
354
 
321
355
  interface $NestedRowFieldSettings extends sap.ui.core.$ControlSettings {
@@ -327,14 +361,18 @@ declare namespace sap {
327
361
  /**
328
362
  * value of the data in a row field
329
363
  */
330
- values?: string[] | sap.ui.base.ManagedObject.PropertyBindingInfo;
364
+ values?:
365
+ | string[]
366
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
367
+ | `{${string}}`;
331
368
 
332
369
  /**
333
370
  * rendering size of the control
334
371
  */
335
372
  renderingSize?:
336
373
  | sap.landvisz.EntityCSSSize
337
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
374
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
375
+ | `{${string}}`;
338
376
 
339
377
  /**
340
378
  * titlte of the icon rendered in the nested row field
@@ -367,7 +405,8 @@ declare namespace sap {
367
405
  linearRows?:
368
406
  | sap.landvisz.internal.LinearRowField[]
369
407
  | sap.landvisz.internal.LinearRowField
370
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
408
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
409
+ | `{${string}}`;
371
410
  }
372
411
 
373
412
  interface $SingleDataContainerSettings
@@ -388,7 +427,8 @@ declare namespace sap {
388
427
  properties?:
389
428
  | sap.ui.core.Control[]
390
429
  | sap.ui.core.Control
391
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
430
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
431
+ | `{${string}}`;
392
432
 
393
433
  /**
394
434
  * called when Single view model is closed
@@ -400,7 +440,10 @@ declare namespace sap {
400
440
  /**
401
441
  * treeModel to be rendered in the control
402
442
  */
403
- treeModel?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
443
+ treeModel?:
444
+ | object
445
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
446
+ | `{${string}}`;
404
447
 
405
448
  /**
406
449
  * binding name
@@ -412,7 +455,8 @@ declare namespace sap {
412
455
  */
413
456
  renderingSize?:
414
457
  | sap.landvisz.EntityCSSSize
415
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
458
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
459
+ | `{${string}}`;
416
460
 
417
461
  /**
418
462
  * aggregation on the tree field to render tree nodes
@@ -420,7 +464,8 @@ declare namespace sap {
420
464
  treeNode?:
421
465
  | sap.ui.commons.TreeNode[]
422
466
  | sap.ui.commons.TreeNode
423
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
467
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
468
+ | `{${string}}`;
424
469
  }
425
470
 
426
471
  /**
@@ -463,6 +508,8 @@ declare namespace sap {
463
508
  * with the information contained in `oClassInfo`.
464
509
  *
465
510
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
511
+ *
512
+ * @returns Created class / constructor function
466
513
  */
467
514
  static extend<T extends Record<string, unknown>>(
468
515
  /**
@@ -481,10 +528,14 @@ declare namespace sap {
481
528
  ): Function;
482
529
  /**
483
530
  * Returns a metadata object for class sap.landvisz.internal.ActionBar.
531
+ *
532
+ * @returns Metadata object describing this class
484
533
  */
485
534
  static getMetadata(): sap.ui.core.ElementMetadata;
486
535
  /**
487
536
  * Adds some menu to the aggregation {@link #getMenu menu}.
537
+ *
538
+ * @returns Reference to `this` in order to allow method chaining
488
539
  */
489
540
  addMenu(
490
541
  /**
@@ -499,6 +550,8 @@ declare namespace sap {
499
550
  * otherwise it will be bound to this `sap.landvisz.internal.ActionBar` itself.
500
551
  *
501
552
  * click on the action bar
553
+ *
554
+ * @returns Reference to `this` in order to allow method chaining
502
555
  */
503
556
  attachSelect(
504
557
  /**
@@ -522,6 +575,8 @@ declare namespace sap {
522
575
  * otherwise it will be bound to this `sap.landvisz.internal.ActionBar` itself.
523
576
  *
524
577
  * click on the action bar
578
+ *
579
+ * @returns Reference to `this` in order to allow method chaining
525
580
  */
526
581
  attachSelect(
527
582
  /**
@@ -535,12 +590,16 @@ declare namespace sap {
535
590
  ): this;
536
591
  /**
537
592
  * Destroys all the menu in the aggregation {@link #getMenu menu}.
593
+ *
594
+ * @returns Reference to `this` in order to allow method chaining
538
595
  */
539
596
  destroyMenu(): this;
540
597
  /**
541
598
  * Detaches event handler `fnFunction` from the {@link #event:select select} event of this `sap.landvisz.internal.ActionBar`.
542
599
  *
543
600
  * The passed function and listener object must match the ones used for event registration.
601
+ *
602
+ * @returns Reference to `this` in order to allow method chaining
544
603
  */
545
604
  detachSelect(
546
605
  /**
@@ -554,6 +613,8 @@ declare namespace sap {
554
613
  ): this;
555
614
  /**
556
615
  * Fires event {@link #event:select select} to attached listeners.
616
+ *
617
+ * @returns Reference to `this` in order to allow method chaining
557
618
  */
558
619
  fireSelect(
559
620
  /**
@@ -565,12 +626,16 @@ declare namespace sap {
565
626
  * Gets current value of property {@link #getActionLabel actionLabel}.
566
627
  *
567
628
  * label for action
629
+ *
630
+ * @returns Value of property `actionLabel`
568
631
  */
569
632
  getActionLabel(): string;
570
633
  /**
571
634
  * Gets current value of property {@link #getActionTooltip actionTooltip}.
572
635
  *
573
636
  * Tooltip for the action
637
+ *
638
+ * @returns Value of property `actionTooltip`
574
639
  */
575
640
  getActionTooltip(): string;
576
641
  /**
@@ -579,6 +644,8 @@ declare namespace sap {
579
644
  * type of the action
580
645
  *
581
646
  * Default value is `NORMAL`.
647
+ *
648
+ * @returns Value of property `actionType`
582
649
  */
583
650
  getActionType(): sap.landvisz.ActionType;
584
651
  /**
@@ -587,6 +654,8 @@ declare namespace sap {
587
654
  * new type of view is loaded while performing the action.
588
655
  *
589
656
  * Default value is `false`.
657
+ *
658
+ * @returns Value of property `changeView`
590
659
  */
591
660
  getChangeView(): boolean;
592
661
  /**
@@ -595,12 +664,16 @@ declare namespace sap {
595
664
  * property to enable/disable actions
596
665
  *
597
666
  * Default value is `true`.
667
+ *
668
+ * @returns Value of property `enable`
598
669
  */
599
670
  getEnable(): boolean;
600
671
  /**
601
672
  * Gets current value of property {@link #getIconSrc iconSrc}.
602
673
  *
603
674
  * source for the icon rendered
675
+ *
676
+ * @returns Value of property `iconSrc`
604
677
  */
605
678
  getIconSrc(): sap.ui.core.URI;
606
679
  /**
@@ -613,6 +686,8 @@ declare namespace sap {
613
686
  * Gets current value of property {@link #getMenuData menuData}.
614
687
  *
615
688
  * data of menu items and sub items
689
+ *
690
+ * @returns Value of property `menuData`
616
691
  */
617
692
  getMenuData(): object;
618
693
  /**
@@ -621,11 +696,15 @@ declare namespace sap {
621
696
  * Property that determines the size of the entity rendered
622
697
  *
623
698
  * Default value is `Regular`.
699
+ *
700
+ * @returns Value of property `renderingSize`
624
701
  */
625
702
  getRenderingSize(): sap.landvisz.EntityCSSSize;
626
703
  /**
627
704
  * Checks for the provided `sap.ui.commons.Menu` in the aggregation {@link #getMenu menu}. and returns its
628
705
  * index if found or -1 otherwise.
706
+ *
707
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
629
708
  */
630
709
  indexOfMenu(
631
710
  /**
@@ -635,6 +714,8 @@ declare namespace sap {
635
714
  ): int;
636
715
  /**
637
716
  * Inserts a menu into the aggregation {@link #getMenu menu}.
717
+ *
718
+ * @returns Reference to `this` in order to allow method chaining
638
719
  */
639
720
  insertMenu(
640
721
  /**
@@ -652,10 +733,14 @@ declare namespace sap {
652
733
  * Removes all the controls from the aggregation {@link #getMenu menu}.
653
734
  *
654
735
  * Additionally, it unregisters them from the hosting UIArea.
736
+ *
737
+ * @returns An array of the removed elements (might be empty)
655
738
  */
656
739
  removeAllMenu(): sap.ui.commons.Menu[];
657
740
  /**
658
741
  * Removes a menu from the aggregation {@link #getMenu menu}.
742
+ *
743
+ * @returns The removed menu or `null`
659
744
  */
660
745
  removeMenu(
661
746
  /**
@@ -669,6 +754,8 @@ declare namespace sap {
669
754
  * label for action
670
755
  *
671
756
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
757
+ *
758
+ * @returns Reference to `this` in order to allow method chaining
672
759
  */
673
760
  setActionLabel(
674
761
  /**
@@ -682,6 +769,8 @@ declare namespace sap {
682
769
  * Tooltip for the action
683
770
  *
684
771
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
772
+ *
773
+ * @returns Reference to `this` in order to allow method chaining
685
774
  */
686
775
  setActionTooltip(
687
776
  /**
@@ -697,6 +786,8 @@ declare namespace sap {
697
786
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
698
787
  *
699
788
  * Default value is `NORMAL`.
789
+ *
790
+ * @returns Reference to `this` in order to allow method chaining
700
791
  */
701
792
  setActionType(
702
793
  /**
@@ -712,6 +803,8 @@ declare namespace sap {
712
803
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
713
804
  *
714
805
  * Default value is `false`.
806
+ *
807
+ * @returns Reference to `this` in order to allow method chaining
715
808
  */
716
809
  setChangeView(
717
810
  /**
@@ -727,6 +820,8 @@ declare namespace sap {
727
820
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
728
821
  *
729
822
  * Default value is `true`.
823
+ *
824
+ * @returns Reference to `this` in order to allow method chaining
730
825
  */
731
826
  setEnable(
732
827
  /**
@@ -740,6 +835,8 @@ declare namespace sap {
740
835
  * source for the icon rendered
741
836
  *
742
837
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
838
+ *
839
+ * @returns Reference to `this` in order to allow method chaining
743
840
  */
744
841
  setIconSrc(
745
842
  /**
@@ -753,6 +850,8 @@ declare namespace sap {
753
850
  * data of menu items and sub items
754
851
  *
755
852
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
853
+ *
854
+ * @returns Reference to `this` in order to allow method chaining
756
855
  */
757
856
  setMenuData(
758
857
  /**
@@ -768,6 +867,8 @@ declare namespace sap {
768
867
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
769
868
  *
770
869
  * Default value is `Regular`.
870
+ *
871
+ * @returns Reference to `this` in order to allow method chaining
771
872
  */
772
873
  setRenderingSize(
773
874
  /**
@@ -816,6 +917,8 @@ declare namespace sap {
816
917
  * it with the information contained in `oClassInfo`.
817
918
  *
818
919
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
920
+ *
921
+ * @returns Created class / constructor function
819
922
  */
820
923
  static extend<T extends Record<string, unknown>>(
821
924
  /**
@@ -834,10 +937,14 @@ declare namespace sap {
834
937
  ): Function;
835
938
  /**
836
939
  * Returns a metadata object for class sap.landvisz.internal.DataContainer.
940
+ *
941
+ * @returns Metadata object describing this class
837
942
  */
838
943
  static getMetadata(): sap.ui.core.ElementMetadata;
839
944
  /**
840
945
  * Adds some property to the aggregation {@link #getProperties properties}.
946
+ *
947
+ * @returns Reference to `this` in order to allow method chaining
841
948
  */
842
949
  addProperty(
843
950
  /**
@@ -852,6 +959,8 @@ declare namespace sap {
852
959
  * otherwise it will be bound to this `sap.landvisz.internal.DataContainer` itself.
853
960
  *
854
961
  * the action to be carried out on selection of a tab
962
+ *
963
+ * @returns Reference to `this` in order to allow method chaining
855
964
  */
856
965
  attachSelect(
857
966
  /**
@@ -876,6 +985,8 @@ declare namespace sap {
876
985
  * otherwise it will be bound to this `sap.landvisz.internal.DataContainer` itself.
877
986
  *
878
987
  * the action to be carried out on selection of a tab
988
+ *
989
+ * @returns Reference to `this` in order to allow method chaining
879
990
  */
880
991
  attachSelect(
881
992
  /**
@@ -890,12 +1001,16 @@ declare namespace sap {
890
1001
  ): this;
891
1002
  /**
892
1003
  * Destroys all the properties in the aggregation {@link #getProperties properties}.
1004
+ *
1005
+ * @returns Reference to `this` in order to allow method chaining
893
1006
  */
894
1007
  destroyProperties(): this;
895
1008
  /**
896
1009
  * Detaches event handler `fnFunction` from the {@link #event:select select} event of this `sap.landvisz.internal.DataContainer`.
897
1010
  *
898
1011
  * The passed function and listener object must match the ones used for event registration.
1012
+ *
1013
+ * @returns Reference to `this` in order to allow method chaining
899
1014
  */
900
1015
  detachSelect(
901
1016
  /**
@@ -909,6 +1024,8 @@ declare namespace sap {
909
1024
  ): this;
910
1025
  /**
911
1026
  * Fires event {@link #event:select select} to attached listeners.
1027
+ *
1028
+ * @returns Reference to `this` in order to allow method chaining
912
1029
  */
913
1030
  fireSelect(
914
1031
  /**
@@ -920,6 +1037,8 @@ declare namespace sap {
920
1037
  * Gets current value of property {@link #getHeader header}.
921
1038
  *
922
1039
  * Text of Navigation Header
1040
+ *
1041
+ * @returns Value of property `header`
923
1042
  */
924
1043
  getHeader(): string;
925
1044
  /**
@@ -934,6 +1053,8 @@ declare namespace sap {
934
1053
  * rendering size of the control
935
1054
  *
936
1055
  * Default value is `Regular`.
1056
+ *
1057
+ * @returns Value of property `renderingSize`
937
1058
  */
938
1059
  getRenderingSize(): sap.landvisz.EntityCSSSize;
939
1060
  /**
@@ -942,17 +1063,23 @@ declare namespace sap {
942
1063
  * selected property of data header
943
1064
  *
944
1065
  * Default value is `true`.
1066
+ *
1067
+ * @returns Value of property `selected`
945
1068
  */
946
1069
  getSelected(): boolean;
947
1070
  /**
948
1071
  * Gets current value of property {@link #getType type}.
949
1072
  *
950
1073
  * type of landscape object
1074
+ *
1075
+ * @returns Value of property `type`
951
1076
  */
952
1077
  getType(): sap.landvisz.LandscapeObject;
953
1078
  /**
954
1079
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getProperties properties}. and
955
1080
  * returns its index if found or -1 otherwise.
1081
+ *
1082
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
956
1083
  */
957
1084
  indexOfProperty(
958
1085
  /**
@@ -962,6 +1089,8 @@ declare namespace sap {
962
1089
  ): int;
963
1090
  /**
964
1091
  * Inserts a property into the aggregation {@link #getProperties properties}.
1092
+ *
1093
+ * @returns Reference to `this` in order to allow method chaining
965
1094
  */
966
1095
  insertProperty(
967
1096
  /**
@@ -979,10 +1108,14 @@ declare namespace sap {
979
1108
  * Removes all the controls from the aggregation {@link #getProperties properties}.
980
1109
  *
981
1110
  * Additionally, it unregisters them from the hosting UIArea.
1111
+ *
1112
+ * @returns An array of the removed elements (might be empty)
982
1113
  */
983
1114
  removeAllProperties(): sap.ui.core.Control[];
984
1115
  /**
985
1116
  * Removes a property from the aggregation {@link #getProperties properties}.
1117
+ *
1118
+ * @returns The removed property or `null`
986
1119
  */
987
1120
  removeProperty(
988
1121
  /**
@@ -996,6 +1129,8 @@ declare namespace sap {
996
1129
  * Text of Navigation Header
997
1130
  *
998
1131
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1132
+ *
1133
+ * @returns Reference to `this` in order to allow method chaining
999
1134
  */
1000
1135
  setHeader(
1001
1136
  /**
@@ -1011,6 +1146,8 @@ declare namespace sap {
1011
1146
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1012
1147
  *
1013
1148
  * Default value is `Regular`.
1149
+ *
1150
+ * @returns Reference to `this` in order to allow method chaining
1014
1151
  */
1015
1152
  setRenderingSize(
1016
1153
  /**
@@ -1026,6 +1163,8 @@ declare namespace sap {
1026
1163
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1027
1164
  *
1028
1165
  * Default value is `true`.
1166
+ *
1167
+ * @returns Reference to `this` in order to allow method chaining
1029
1168
  */
1030
1169
  setSelected(
1031
1170
  /**
@@ -1039,6 +1178,8 @@ declare namespace sap {
1039
1178
  * type of landscape object
1040
1179
  *
1041
1180
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1181
+ *
1182
+ * @returns Reference to `this` in order to allow method chaining
1042
1183
  */
1043
1184
  setType(
1044
1185
  /**
@@ -1087,6 +1228,8 @@ declare namespace sap {
1087
1228
  * it with the information contained in `oClassInfo`.
1088
1229
  *
1089
1230
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1231
+ *
1232
+ * @returns Created class / constructor function
1090
1233
  */
1091
1234
  static extend<T extends Record<string, unknown>>(
1092
1235
  /**
@@ -1105,12 +1248,16 @@ declare namespace sap {
1105
1248
  ): Function;
1106
1249
  /**
1107
1250
  * Returns a metadata object for class sap.landvisz.internal.DeploymentType.
1251
+ *
1252
+ * @returns Metadata object describing this class
1108
1253
  */
1109
1254
  static getMetadata(): sap.ui.core.ElementMetadata;
1110
1255
  /**
1111
1256
  * Gets current value of property {@link #getType type}.
1112
1257
  *
1113
1258
  * icon type of data
1259
+ *
1260
+ * @returns Value of property `type`
1114
1261
  */
1115
1262
  getType(): string;
1116
1263
  /**
@@ -1119,6 +1266,8 @@ declare namespace sap {
1119
1266
  * icon type of data
1120
1267
  *
1121
1268
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1269
+ *
1270
+ * @returns Reference to `this` in order to allow method chaining
1122
1271
  */
1123
1272
  setType(
1124
1273
  /**
@@ -1167,6 +1316,8 @@ declare namespace sap {
1167
1316
  * it with the information contained in `oClassInfo`.
1168
1317
  *
1169
1318
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1319
+ *
1320
+ * @returns Created class / constructor function
1170
1321
  */
1171
1322
  static extend<T extends Record<string, unknown>>(
1172
1323
  /**
@@ -1185,6 +1336,8 @@ declare namespace sap {
1185
1336
  ): Function;
1186
1337
  /**
1187
1338
  * Returns a metadata object for class sap.landvisz.internal.EntityAction.
1339
+ *
1340
+ * @returns Metadata object describing this class
1188
1341
  */
1189
1342
  static getMetadata(): sap.ui.core.ElementMetadata;
1190
1343
  /**
@@ -1194,6 +1347,8 @@ declare namespace sap {
1194
1347
  * otherwise it will be bound to this `sap.landvisz.internal.EntityAction` itself.
1195
1348
  *
1196
1349
  * on click fire press
1350
+ *
1351
+ * @returns Reference to `this` in order to allow method chaining
1197
1352
  */
1198
1353
  attachPress(
1199
1354
  /**
@@ -1218,6 +1373,8 @@ declare namespace sap {
1218
1373
  * otherwise it will be bound to this `sap.landvisz.internal.EntityAction` itself.
1219
1374
  *
1220
1375
  * on click fire press
1376
+ *
1377
+ * @returns Reference to `this` in order to allow method chaining
1221
1378
  */
1222
1379
  attachPress(
1223
1380
  /**
@@ -1234,6 +1391,8 @@ declare namespace sap {
1234
1391
  * Detaches event handler `fnFunction` from the {@link #event:press press} event of this `sap.landvisz.internal.EntityAction`.
1235
1392
  *
1236
1393
  * The passed function and listener object must match the ones used for event registration.
1394
+ *
1395
+ * @returns Reference to `this` in order to allow method chaining
1237
1396
  */
1238
1397
  detachPress(
1239
1398
  /**
@@ -1247,6 +1406,8 @@ declare namespace sap {
1247
1406
  ): this;
1248
1407
  /**
1249
1408
  * Fires event {@link #event:press press} to attached listeners.
1409
+ *
1410
+ * @returns Reference to `this` in order to allow method chaining
1250
1411
  */
1251
1412
  firePress(
1252
1413
  /**
@@ -1258,18 +1419,24 @@ declare namespace sap {
1258
1419
  * Gets current value of property {@link #getActionTooltip actionTooltip}.
1259
1420
  *
1260
1421
  * Tooltip for the internal action
1422
+ *
1423
+ * @returns Value of property `actionTooltip`
1261
1424
  */
1262
1425
  getActionTooltip(): string;
1263
1426
  /**
1264
1427
  * Gets current value of property {@link #getIconSrc iconSrc}.
1265
1428
  *
1266
1429
  * Source of the icon
1430
+ *
1431
+ * @returns Value of property `iconSrc`
1267
1432
  */
1268
1433
  getIconSrc(): sap.ui.core.URI;
1269
1434
  /**
1270
1435
  * Gets current value of property {@link #getRenderingSize renderingSize}.
1271
1436
  *
1272
1437
  * rendering size of the control
1438
+ *
1439
+ * @returns Value of property `renderingSize`
1273
1440
  */
1274
1441
  getRenderingSize(): string;
1275
1442
  /**
@@ -1278,6 +1445,8 @@ declare namespace sap {
1278
1445
  * Tooltip for the internal action
1279
1446
  *
1280
1447
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1448
+ *
1449
+ * @returns Reference to `this` in order to allow method chaining
1281
1450
  */
1282
1451
  setActionTooltip(
1283
1452
  /**
@@ -1291,6 +1460,8 @@ declare namespace sap {
1291
1460
  * Source of the icon
1292
1461
  *
1293
1462
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1463
+ *
1464
+ * @returns Reference to `this` in order to allow method chaining
1294
1465
  */
1295
1466
  setIconSrc(
1296
1467
  /**
@@ -1304,6 +1475,8 @@ declare namespace sap {
1304
1475
  * rendering size of the control
1305
1476
  *
1306
1477
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1478
+ *
1479
+ * @returns Reference to `this` in order to allow method chaining
1307
1480
  */
1308
1481
  setRenderingSize(
1309
1482
  /**
@@ -1352,6 +1525,8 @@ declare namespace sap {
1352
1525
  * it with the information contained in `oClassInfo`.
1353
1526
  *
1354
1527
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1528
+ *
1529
+ * @returns Created class / constructor function
1355
1530
  */
1356
1531
  static extend<T extends Record<string, unknown>>(
1357
1532
  /**
@@ -1373,6 +1548,8 @@ declare namespace sap {
1373
1548
  ): Function;
1374
1549
  /**
1375
1550
  * Returns a metadata object for class sap.landvisz.internal.EntityCustomAction.
1551
+ *
1552
+ * @returns Metadata object describing this class
1376
1553
  */
1377
1554
  static getMetadata(): sap.ui.core.ElementMetadata;
1378
1555
  /**
@@ -1382,6 +1559,8 @@ declare namespace sap {
1382
1559
  * otherwise it will be bound to this `sap.landvisz.internal.EntityCustomAction` itself.
1383
1560
  *
1384
1561
  * click on the action bar
1562
+ *
1563
+ * @returns Reference to `this` in order to allow method chaining
1385
1564
  */
1386
1565
  attachSelect(
1387
1566
  /**
@@ -1406,6 +1585,8 @@ declare namespace sap {
1406
1585
  * otherwise it will be bound to this `sap.landvisz.internal.EntityCustomAction` itself.
1407
1586
  *
1408
1587
  * click on the action bar
1588
+ *
1589
+ * @returns Reference to `this` in order to allow method chaining
1409
1590
  */
1410
1591
  attachSelect(
1411
1592
  /**
@@ -1422,6 +1603,8 @@ declare namespace sap {
1422
1603
  * Detaches event handler `fnFunction` from the {@link #event:select select} event of this `sap.landvisz.internal.EntityCustomAction`.
1423
1604
  *
1424
1605
  * The passed function and listener object must match the ones used for event registration.
1606
+ *
1607
+ * @returns Reference to `this` in order to allow method chaining
1425
1608
  */
1426
1609
  detachSelect(
1427
1610
  /**
@@ -1435,6 +1618,8 @@ declare namespace sap {
1435
1618
  ): this;
1436
1619
  /**
1437
1620
  * Fires event {@link #event:select select} to attached listeners.
1621
+ *
1622
+ * @returns Reference to `this` in order to allow method chaining
1438
1623
  */
1439
1624
  fireSelect(
1440
1625
  /**
@@ -1446,6 +1631,8 @@ declare namespace sap {
1446
1631
  * Gets current value of property {@link #getCustomAction customAction}.
1447
1632
  *
1448
1633
  * name of the custom action
1634
+ *
1635
+ * @returns Value of property `customAction`
1449
1636
  */
1450
1637
  getCustomAction(): string;
1451
1638
  /**
@@ -1454,6 +1641,8 @@ declare namespace sap {
1454
1641
  * rendering size of the control
1455
1642
  *
1456
1643
  * Default value is `Regular`.
1644
+ *
1645
+ * @returns Value of property `renderingSize`
1457
1646
  */
1458
1647
  getRenderingSize(): sap.landvisz.EntityCSSSize;
1459
1648
  /**
@@ -1462,6 +1651,8 @@ declare namespace sap {
1462
1651
  * name of the custom action
1463
1652
  *
1464
1653
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1654
+ *
1655
+ * @returns Reference to `this` in order to allow method chaining
1465
1656
  */
1466
1657
  setCustomAction(
1467
1658
  /**
@@ -1477,6 +1668,8 @@ declare namespace sap {
1477
1668
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1478
1669
  *
1479
1670
  * Default value is `Regular`.
1671
+ *
1672
+ * @returns Reference to `this` in order to allow method chaining
1480
1673
  */
1481
1674
  setRenderingSize(
1482
1675
  /**
@@ -1525,6 +1718,8 @@ declare namespace sap {
1525
1718
  * it with the information contained in `oClassInfo`.
1526
1719
  *
1527
1720
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1721
+ *
1722
+ * @returns Created class / constructor function
1528
1723
  */
1529
1724
  static extend<T extends Record<string, unknown>>(
1530
1725
  /**
@@ -1543,6 +1738,8 @@ declare namespace sap {
1543
1738
  ): Function;
1544
1739
  /**
1545
1740
  * Returns a metadata object for class sap.landvisz.internal.HeaderList.
1741
+ *
1742
+ * @returns Metadata object describing this class
1546
1743
  */
1547
1744
  static getMetadata(): sap.ui.core.ElementMetadata;
1548
1745
  /**
@@ -1552,6 +1749,8 @@ declare namespace sap {
1552
1749
  * otherwise it will be bound to this `sap.landvisz.internal.HeaderList` itself.
1553
1750
  *
1554
1751
  * Event triggered when header is clicked
1752
+ *
1753
+ * @returns Reference to `this` in order to allow method chaining
1555
1754
  */
1556
1755
  attachPress(
1557
1756
  /**
@@ -1575,6 +1774,8 @@ declare namespace sap {
1575
1774
  * otherwise it will be bound to this `sap.landvisz.internal.HeaderList` itself.
1576
1775
  *
1577
1776
  * Event triggered when header is clicked
1777
+ *
1778
+ * @returns Reference to `this` in order to allow method chaining
1578
1779
  */
1579
1780
  attachPress(
1580
1781
  /**
@@ -1590,6 +1791,8 @@ declare namespace sap {
1590
1791
  * Detaches event handler `fnFunction` from the {@link #event:press press} event of this `sap.landvisz.internal.HeaderList`.
1591
1792
  *
1592
1793
  * The passed function and listener object must match the ones used for event registration.
1794
+ *
1795
+ * @returns Reference to `this` in order to allow method chaining
1593
1796
  */
1594
1797
  detachPress(
1595
1798
  /**
@@ -1603,6 +1806,8 @@ declare namespace sap {
1603
1806
  ): this;
1604
1807
  /**
1605
1808
  * Fires event {@link #event:press press} to attached listeners.
1809
+ *
1810
+ * @returns Reference to `this` in order to allow method chaining
1606
1811
  */
1607
1812
  firePress(
1608
1813
  /**
@@ -1614,12 +1819,16 @@ declare namespace sap {
1614
1819
  * Gets current value of property {@link #getEntitySize entitySize}.
1615
1820
  *
1616
1821
  * Size of the headers
1822
+ *
1823
+ * @returns Value of property `entitySize`
1617
1824
  */
1618
1825
  getEntitySize(): string;
1619
1826
  /**
1620
1827
  * Gets current value of property {@link #getHeaderTooltip headerTooltip}.
1621
1828
  *
1622
1829
  * ToolTip for headers
1830
+ *
1831
+ * @returns Value of property `headerTooltip`
1623
1832
  */
1624
1833
  getHeaderTooltip(): string;
1625
1834
  /**
@@ -1628,12 +1837,16 @@ declare namespace sap {
1628
1837
  * to select/deselect a header
1629
1838
  *
1630
1839
  * Default value is `false`.
1840
+ *
1841
+ * @returns Value of property `selected`
1631
1842
  */
1632
1843
  getSelected(): boolean;
1633
1844
  /**
1634
1845
  * Gets current value of property {@link #getType type}.
1635
1846
  *
1636
1847
  * type of system
1848
+ *
1849
+ * @returns Value of property `type`
1637
1850
  */
1638
1851
  getType(): sap.landvisz.LandscapeObject;
1639
1852
  /**
@@ -1642,6 +1855,8 @@ declare namespace sap {
1642
1855
  * Size of the headers
1643
1856
  *
1644
1857
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1858
+ *
1859
+ * @returns Reference to `this` in order to allow method chaining
1645
1860
  */
1646
1861
  setEntitySize(
1647
1862
  /**
@@ -1655,6 +1870,8 @@ declare namespace sap {
1655
1870
  * ToolTip for headers
1656
1871
  *
1657
1872
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1873
+ *
1874
+ * @returns Reference to `this` in order to allow method chaining
1658
1875
  */
1659
1876
  setHeaderTooltip(
1660
1877
  /**
@@ -1670,6 +1887,8 @@ declare namespace sap {
1670
1887
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1671
1888
  *
1672
1889
  * Default value is `false`.
1890
+ *
1891
+ * @returns Reference to `this` in order to allow method chaining
1673
1892
  */
1674
1893
  setSelected(
1675
1894
  /**
@@ -1683,6 +1902,8 @@ declare namespace sap {
1683
1902
  * type of system
1684
1903
  *
1685
1904
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1905
+ *
1906
+ * @returns Reference to `this` in order to allow method chaining
1686
1907
  */
1687
1908
  setType(
1688
1909
  /**
@@ -1731,6 +1952,8 @@ declare namespace sap {
1731
1952
  * it with the information contained in `oClassInfo`.
1732
1953
  *
1733
1954
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1955
+ *
1956
+ * @returns Created class / constructor function
1734
1957
  */
1735
1958
  static extend<T extends Record<string, unknown>>(
1736
1959
  /**
@@ -1752,6 +1975,8 @@ declare namespace sap {
1752
1975
  ): Function;
1753
1976
  /**
1754
1977
  * Returns a metadata object for class sap.landvisz.internal.IdentificationBar.
1978
+ *
1979
+ * @returns Metadata object describing this class
1755
1980
  */
1756
1981
  static getMetadata(): sap.ui.core.ElementMetadata;
1757
1982
  /**
@@ -1761,6 +1986,8 @@ declare namespace sap {
1761
1986
  * otherwise it will be bound to this `sap.landvisz.internal.IdentificationBar` itself.
1762
1987
  *
1763
1988
  * fires click event on selection
1989
+ *
1990
+ * @returns Reference to `this` in order to allow method chaining
1764
1991
  */
1765
1992
  attachSelect(
1766
1993
  /**
@@ -1785,6 +2012,8 @@ declare namespace sap {
1785
2012
  * otherwise it will be bound to this `sap.landvisz.internal.IdentificationBar` itself.
1786
2013
  *
1787
2014
  * fires click event on selection
2015
+ *
2016
+ * @returns Reference to `this` in order to allow method chaining
1788
2017
  */
1789
2018
  attachSelect(
1790
2019
  /**
@@ -1801,6 +2030,8 @@ declare namespace sap {
1801
2030
  * Detaches event handler `fnFunction` from the {@link #event:select select} event of this `sap.landvisz.internal.IdentificationBar`.
1802
2031
  *
1803
2032
  * The passed function and listener object must match the ones used for event registration.
2033
+ *
2034
+ * @returns Reference to `this` in order to allow method chaining
1804
2035
  */
1805
2036
  detachSelect(
1806
2037
  /**
@@ -1814,6 +2045,8 @@ declare namespace sap {
1814
2045
  ): this;
1815
2046
  /**
1816
2047
  * Fires event {@link #event:select select} to attached listeners.
2048
+ *
2049
+ * @returns Reference to `this` in order to allow method chaining
1817
2050
  */
1818
2051
  fireSelect(
1819
2052
  /**
@@ -1825,18 +2058,24 @@ declare namespace sap {
1825
2058
  * Gets current value of property {@link #getComponentType componentType}.
1826
2059
  *
1827
2060
  * Component type of the entity
2061
+ *
2062
+ * @returns Value of property `componentType`
1828
2063
  */
1829
2064
  getComponentType(): sap.landvisz.ComponentType;
1830
2065
  /**
1831
2066
  * Gets current value of property {@link #getDefaultState defaultState}.
1832
2067
  *
1833
2068
  * determines the default state of the control
2069
+ *
2070
+ * @returns Value of property `defaultState`
1834
2071
  */
1835
2072
  getDefaultState(): string;
1836
2073
  /**
1837
2074
  * Gets current value of property {@link #getDescription description}.
1838
2075
  *
1839
2076
  * despriction of the identification region of a control
2077
+ *
2078
+ * @returns Value of property `description`
1840
2079
  */
1841
2080
  getDescription(): string;
1842
2081
  /**
@@ -1847,18 +2086,24 @@ declare namespace sap {
1847
2086
  * Gets current value of property {@link #getQualifierText qualifierText}.
1848
2087
  *
1849
2088
  * text that identifies the server
2089
+ *
2090
+ * @returns Value of property `qualifierText`
1850
2091
  */
1851
2092
  getQualifierText(): string;
1852
2093
  /**
1853
2094
  * Gets current value of property {@link #getQualifierTooltip qualifierTooltip}.
1854
2095
  *
1855
2096
  * tooltip to identify the server
2097
+ *
2098
+ * @returns Value of property `qualifierTooltip`
1856
2099
  */
1857
2100
  getQualifierTooltip(): string;
1858
2101
  /**
1859
2102
  * Gets current value of property {@link #getQualifierType qualifierType}.
1860
2103
  *
1861
2104
  * icon to identify the server
2105
+ *
2106
+ * @returns Value of property `qualifierType`
1862
2107
  */
1863
2108
  getQualifierType(): string;
1864
2109
  /**
@@ -1867,18 +2112,24 @@ declare namespace sap {
1867
2112
  * rendering size of the control
1868
2113
  *
1869
2114
  * Default value is `Regular`.
2115
+ *
2116
+ * @returns Value of property `renderingSize`
1870
2117
  */
1871
2118
  getRenderingSize(): sap.landvisz.EntityCSSSize;
1872
2119
  /**
1873
2120
  * Gets current value of property {@link #getText text}.
1874
2121
  *
1875
2122
  * text that identifies a system
2123
+ *
2124
+ * @returns Value of property `text`
1876
2125
  */
1877
2126
  getText(): string;
1878
2127
  /**
1879
2128
  * Gets current value of property {@link #getType type}.
1880
2129
  *
1881
2130
  * type of system rendered
2131
+ *
2132
+ * @returns Value of property `type`
1882
2133
  */
1883
2134
  getType(): string;
1884
2135
  /**
@@ -1887,6 +2138,8 @@ declare namespace sap {
1887
2138
  * Component type of the entity
1888
2139
  *
1889
2140
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2141
+ *
2142
+ * @returns Reference to `this` in order to allow method chaining
1890
2143
  */
1891
2144
  setComponentType(
1892
2145
  /**
@@ -1900,6 +2153,8 @@ declare namespace sap {
1900
2153
  * determines the default state of the control
1901
2154
  *
1902
2155
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2156
+ *
2157
+ * @returns Reference to `this` in order to allow method chaining
1903
2158
  */
1904
2159
  setDefaultState(
1905
2160
  /**
@@ -1913,6 +2168,8 @@ declare namespace sap {
1913
2168
  * despriction of the identification region of a control
1914
2169
  *
1915
2170
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2171
+ *
2172
+ * @returns Reference to `this` in order to allow method chaining
1916
2173
  */
1917
2174
  setDescription(
1918
2175
  /**
@@ -1926,6 +2183,8 @@ declare namespace sap {
1926
2183
  * text that identifies the server
1927
2184
  *
1928
2185
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2186
+ *
2187
+ * @returns Reference to `this` in order to allow method chaining
1929
2188
  */
1930
2189
  setQualifierText(
1931
2190
  /**
@@ -1939,6 +2198,8 @@ declare namespace sap {
1939
2198
  * tooltip to identify the server
1940
2199
  *
1941
2200
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2201
+ *
2202
+ * @returns Reference to `this` in order to allow method chaining
1942
2203
  */
1943
2204
  setQualifierTooltip(
1944
2205
  /**
@@ -1952,6 +2213,8 @@ declare namespace sap {
1952
2213
  * icon to identify the server
1953
2214
  *
1954
2215
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2216
+ *
2217
+ * @returns Reference to `this` in order to allow method chaining
1955
2218
  */
1956
2219
  setQualifierType(
1957
2220
  /**
@@ -1967,6 +2230,8 @@ declare namespace sap {
1967
2230
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1968
2231
  *
1969
2232
  * Default value is `Regular`.
2233
+ *
2234
+ * @returns Reference to `this` in order to allow method chaining
1970
2235
  */
1971
2236
  setRenderingSize(
1972
2237
  /**
@@ -1980,6 +2245,8 @@ declare namespace sap {
1980
2245
  * text that identifies a system
1981
2246
  *
1982
2247
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2248
+ *
2249
+ * @returns Reference to `this` in order to allow method chaining
1983
2250
  */
1984
2251
  setText(
1985
2252
  /**
@@ -1993,6 +2260,8 @@ declare namespace sap {
1993
2260
  * type of system rendered
1994
2261
  *
1995
2262
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2263
+ *
2264
+ * @returns Reference to `this` in order to allow method chaining
1996
2265
  */
1997
2266
  setType(
1998
2267
  /**
@@ -2041,6 +2310,8 @@ declare namespace sap {
2041
2310
  * it with the information contained in `oClassInfo`.
2042
2311
  *
2043
2312
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2313
+ *
2314
+ * @returns Created class / constructor function
2044
2315
  */
2045
2316
  static extend<T extends Record<string, unknown>>(
2046
2317
  /**
@@ -2059,36 +2330,48 @@ declare namespace sap {
2059
2330
  ): Function;
2060
2331
  /**
2061
2332
  * Returns a metadata object for class sap.landvisz.internal.LinearRowField.
2333
+ *
2334
+ * @returns Metadata object describing this class
2062
2335
  */
2063
2336
  static getMetadata(): sap.ui.core.ElementMetadata;
2064
2337
  /**
2065
2338
  * Gets current value of property {@link #getIconTitle iconTitle}.
2066
2339
  *
2067
2340
  * title of the icon displayed in the row field
2341
+ *
2342
+ * @returns Value of property `iconTitle`
2068
2343
  */
2069
2344
  getIconTitle(): string;
2070
2345
  /**
2071
2346
  * Gets current value of property {@link #getIconType iconType}.
2072
2347
  *
2073
2348
  * text of the icon dislayed in the row field
2349
+ *
2350
+ * @returns Value of property `iconType`
2074
2351
  */
2075
2352
  getIconType(): string;
2076
2353
  /**
2077
2354
  * Gets current value of property {@link #getInvalidName invalidName}.
2078
2355
  *
2079
2356
  * determines if the product version are valid/invalid
2357
+ *
2358
+ * @returns Value of property `invalidName`
2080
2359
  */
2081
2360
  getInvalidName(): boolean;
2082
2361
  /**
2083
2362
  * Gets current value of property {@link #getLabel label}.
2084
2363
  *
2085
2364
  * text to be displayed in the row field
2365
+ *
2366
+ * @returns Value of property `label`
2086
2367
  */
2087
2368
  getLabel(): string;
2088
2369
  /**
2089
2370
  * Gets current value of property {@link #getLinkSource linkSource}.
2090
2371
  *
2091
2372
  * source from which two or more systems are dependent
2373
+ *
2374
+ * @returns Value of property `linkSource`
2092
2375
  */
2093
2376
  getLinkSource(): string;
2094
2377
  /**
@@ -2097,24 +2380,32 @@ declare namespace sap {
2097
2380
  * rendering size of system
2098
2381
  *
2099
2382
  * Default value is `Regular`.
2383
+ *
2384
+ * @returns Value of property `renderingSize`
2100
2385
  */
2101
2386
  getRenderingSize(): sap.landvisz.EntityCSSSize;
2102
2387
  /**
2103
2388
  * Gets current value of property {@link #getRightIconSrc rightIconSrc}.
2104
2389
  *
2105
2390
  * Image source of the icon on right
2391
+ *
2392
+ * @returns Value of property `rightIconSrc`
2106
2393
  */
2107
2394
  getRightIconSrc(): string;
2108
2395
  /**
2109
2396
  * Gets current value of property {@link #getRightIconTooltip rightIconTooltip}.
2110
2397
  *
2111
2398
  * tool tip for the right icon
2399
+ *
2400
+ * @returns Value of property `rightIconTooltip`
2112
2401
  */
2113
2402
  getRightIconTooltip(): string;
2114
2403
  /**
2115
2404
  * Gets current value of property {@link #getValue value}.
2116
2405
  *
2117
2406
  * value to be displayed in the row field
2407
+ *
2408
+ * @returns Value of property `value`
2118
2409
  */
2119
2410
  getValue(): string;
2120
2411
  /**
@@ -2123,6 +2414,8 @@ declare namespace sap {
2123
2414
  * title of the icon displayed in the row field
2124
2415
  *
2125
2416
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2417
+ *
2418
+ * @returns Reference to `this` in order to allow method chaining
2126
2419
  */
2127
2420
  setIconTitle(
2128
2421
  /**
@@ -2136,6 +2429,8 @@ declare namespace sap {
2136
2429
  * text of the icon dislayed in the row field
2137
2430
  *
2138
2431
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2432
+ *
2433
+ * @returns Reference to `this` in order to allow method chaining
2139
2434
  */
2140
2435
  setIconType(
2141
2436
  /**
@@ -2149,6 +2444,8 @@ declare namespace sap {
2149
2444
  * determines if the product version are valid/invalid
2150
2445
  *
2151
2446
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2447
+ *
2448
+ * @returns Reference to `this` in order to allow method chaining
2152
2449
  */
2153
2450
  setInvalidName(
2154
2451
  /**
@@ -2162,6 +2459,8 @@ declare namespace sap {
2162
2459
  * text to be displayed in the row field
2163
2460
  *
2164
2461
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2462
+ *
2463
+ * @returns Reference to `this` in order to allow method chaining
2165
2464
  */
2166
2465
  setLabel(
2167
2466
  /**
@@ -2175,6 +2474,8 @@ declare namespace sap {
2175
2474
  * source from which two or more systems are dependent
2176
2475
  *
2177
2476
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2477
+ *
2478
+ * @returns Reference to `this` in order to allow method chaining
2178
2479
  */
2179
2480
  setLinkSource(
2180
2481
  /**
@@ -2190,6 +2491,8 @@ declare namespace sap {
2190
2491
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2191
2492
  *
2192
2493
  * Default value is `Regular`.
2494
+ *
2495
+ * @returns Reference to `this` in order to allow method chaining
2193
2496
  */
2194
2497
  setRenderingSize(
2195
2498
  /**
@@ -2203,6 +2506,8 @@ declare namespace sap {
2203
2506
  * Image source of the icon on right
2204
2507
  *
2205
2508
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2509
+ *
2510
+ * @returns Reference to `this` in order to allow method chaining
2206
2511
  */
2207
2512
  setRightIconSrc(
2208
2513
  /**
@@ -2216,6 +2521,8 @@ declare namespace sap {
2216
2521
  * tool tip for the right icon
2217
2522
  *
2218
2523
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2524
+ *
2525
+ * @returns Reference to `this` in order to allow method chaining
2219
2526
  */
2220
2527
  setRightIconTooltip(
2221
2528
  /**
@@ -2229,6 +2536,8 @@ declare namespace sap {
2229
2536
  * value to be displayed in the row field
2230
2537
  *
2231
2538
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2539
+ *
2540
+ * @returns Reference to `this` in order to allow method chaining
2232
2541
  */
2233
2542
  setValue(
2234
2543
  /**
@@ -2279,6 +2588,8 @@ declare namespace sap {
2279
2588
  * it with the information contained in `oClassInfo`.
2280
2589
  *
2281
2590
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2591
+ *
2592
+ * @returns Created class / constructor function
2282
2593
  */
2283
2594
  static extend<T extends Record<string, unknown>>(
2284
2595
  /**
@@ -2297,30 +2608,40 @@ declare namespace sap {
2297
2608
  ): Function;
2298
2609
  /**
2299
2610
  * Returns a metadata object for class sap.landvisz.internal.ModelingStatus.
2611
+ *
2612
+ * @returns Metadata object describing this class
2300
2613
  */
2301
2614
  static getMetadata(): sap.ui.core.ElementMetadata;
2302
2615
  /**
2303
2616
  * Gets current value of property {@link #getStateIconSrc stateIconSrc}.
2304
2617
  *
2305
2618
  * icon source for status
2619
+ *
2620
+ * @returns Value of property `stateIconSrc`
2306
2621
  */
2307
2622
  getStateIconSrc(): string;
2308
2623
  /**
2309
2624
  * Gets current value of property {@link #getStateIconTooltip stateIconTooltip}.
2310
2625
  *
2311
2626
  * tooltip for the icon
2627
+ *
2628
+ * @returns Value of property `stateIconTooltip`
2312
2629
  */
2313
2630
  getStateIconTooltip(): any;
2314
2631
  /**
2315
2632
  * Gets current value of property {@link #getStatus status}.
2316
2633
  *
2317
2634
  * status determines the state of the system namely correct, warning, error
2635
+ *
2636
+ * @returns Value of property `status`
2318
2637
  */
2319
2638
  getStatus(): string;
2320
2639
  /**
2321
2640
  * Gets current value of property {@link #getStatusTooltip statusTooltip}.
2322
2641
  *
2323
2642
  * Tooltip for status that determines the state of the system namely correct, warning, error
2643
+ *
2644
+ * @returns Value of property `statusTooltip`
2324
2645
  */
2325
2646
  getStatusTooltip(): string;
2326
2647
  /**
@@ -2329,6 +2650,8 @@ declare namespace sap {
2329
2650
  * icon source for status
2330
2651
  *
2331
2652
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2653
+ *
2654
+ * @returns Reference to `this` in order to allow method chaining
2332
2655
  */
2333
2656
  setStateIconSrc(
2334
2657
  /**
@@ -2342,6 +2665,8 @@ declare namespace sap {
2342
2665
  * tooltip for the icon
2343
2666
  *
2344
2667
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2668
+ *
2669
+ * @returns Reference to `this` in order to allow method chaining
2345
2670
  */
2346
2671
  setStateIconTooltip(
2347
2672
  /**
@@ -2355,6 +2680,8 @@ declare namespace sap {
2355
2680
  * status determines the state of the system namely correct, warning, error
2356
2681
  *
2357
2682
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2683
+ *
2684
+ * @returns Reference to `this` in order to allow method chaining
2358
2685
  */
2359
2686
  setStatus(
2360
2687
  /**
@@ -2368,6 +2695,8 @@ declare namespace sap {
2368
2695
  * Tooltip for status that determines the state of the system namely correct, warning, error
2369
2696
  *
2370
2697
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2698
+ *
2699
+ * @returns Reference to `this` in order to allow method chaining
2371
2700
  */
2372
2701
  setStatusTooltip(
2373
2702
  /**
@@ -2416,6 +2745,8 @@ declare namespace sap {
2416
2745
  * it with the information contained in `oClassInfo`.
2417
2746
  *
2418
2747
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2748
+ *
2749
+ * @returns Created class / constructor function
2419
2750
  */
2420
2751
  static extend<T extends Record<string, unknown>>(
2421
2752
  /**
@@ -2434,10 +2765,14 @@ declare namespace sap {
2434
2765
  ): Function;
2435
2766
  /**
2436
2767
  * Returns a metadata object for class sap.landvisz.internal.NestedRowField.
2768
+ *
2769
+ * @returns Metadata object describing this class
2437
2770
  */
2438
2771
  static getMetadata(): sap.ui.core.ElementMetadata;
2439
2772
  /**
2440
2773
  * Adds some linearRow to the aggregation {@link #getLinearRows linearRows}.
2774
+ *
2775
+ * @returns Reference to `this` in order to allow method chaining
2441
2776
  */
2442
2777
  addLinearRow(
2443
2778
  /**
@@ -2447,18 +2782,24 @@ declare namespace sap {
2447
2782
  ): this;
2448
2783
  /**
2449
2784
  * Destroys all the linearRows in the aggregation {@link #getLinearRows linearRows}.
2785
+ *
2786
+ * @returns Reference to `this` in order to allow method chaining
2450
2787
  */
2451
2788
  destroyLinearRows(): this;
2452
2789
  /**
2453
2790
  * Gets current value of property {@link #getIconTitle iconTitle}.
2454
2791
  *
2455
2792
  * titlte of the icon rendered in the nested row field
2793
+ *
2794
+ * @returns Value of property `iconTitle`
2456
2795
  */
2457
2796
  getIconTitle(): string;
2458
2797
  /**
2459
2798
  * Gets current value of property {@link #getLabel label}.
2460
2799
  *
2461
2800
  * label for data in a row field
2801
+ *
2802
+ * @returns Value of property `label`
2462
2803
  */
2463
2804
  getLabel(): string;
2464
2805
  /**
@@ -2471,6 +2812,8 @@ declare namespace sap {
2471
2812
  * Gets current value of property {@link #getLinkSource linkSource}.
2472
2813
  *
2473
2814
  * source from which two or more systems are dependent
2815
+ *
2816
+ * @returns Value of property `linkSource`
2474
2817
  */
2475
2818
  getLinkSource(): string;
2476
2819
  /**
@@ -2479,35 +2822,47 @@ declare namespace sap {
2479
2822
  * rendering size of the control
2480
2823
  *
2481
2824
  * Default value is `Regular`.
2825
+ *
2826
+ * @returns Value of property `renderingSize`
2482
2827
  */
2483
2828
  getRenderingSize(): sap.landvisz.EntityCSSSize;
2484
2829
  /**
2485
2830
  * Gets current value of property {@link #getRightIconSrc rightIconSrc}.
2486
2831
  *
2487
2832
  * Image source of the icon on right
2833
+ *
2834
+ * @returns Value of property `rightIconSrc`
2488
2835
  */
2489
2836
  getRightIconSrc(): string;
2490
2837
  /**
2491
2838
  * Gets current value of property {@link #getType type}.
2492
2839
  *
2493
2840
  * determines the type of landscape object
2841
+ *
2842
+ * @returns Value of property `type`
2494
2843
  */
2495
2844
  getType(): string;
2496
2845
  /**
2497
2846
  * Gets current value of property {@link #getValues values}.
2498
2847
  *
2499
2848
  * value of the data in a row field
2849
+ *
2850
+ * @returns Value of property `values`
2500
2851
  */
2501
2852
  getValues(): string[];
2502
2853
  /**
2503
2854
  * Gets current value of property {@link #getValueType valueType}.
2504
2855
  *
2505
2856
  * determines the type of value
2857
+ *
2858
+ * @returns Value of property `valueType`
2506
2859
  */
2507
2860
  getValueType(): string;
2508
2861
  /**
2509
2862
  * Checks for the provided `sap.landvisz.internal.LinearRowField` in the aggregation {@link #getLinearRows
2510
2863
  * linearRows}. and returns its index if found or -1 otherwise.
2864
+ *
2865
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
2511
2866
  */
2512
2867
  indexOfLinearRow(
2513
2868
  /**
@@ -2517,6 +2872,8 @@ declare namespace sap {
2517
2872
  ): int;
2518
2873
  /**
2519
2874
  * Inserts a linearRow into the aggregation {@link #getLinearRows linearRows}.
2875
+ *
2876
+ * @returns Reference to `this` in order to allow method chaining
2520
2877
  */
2521
2878
  insertLinearRow(
2522
2879
  /**
@@ -2534,10 +2891,14 @@ declare namespace sap {
2534
2891
  * Removes all the controls from the aggregation {@link #getLinearRows linearRows}.
2535
2892
  *
2536
2893
  * Additionally, it unregisters them from the hosting UIArea.
2894
+ *
2895
+ * @returns An array of the removed elements (might be empty)
2537
2896
  */
2538
2897
  removeAllLinearRows(): sap.landvisz.internal.LinearRowField[];
2539
2898
  /**
2540
2899
  * Removes a linearRow from the aggregation {@link #getLinearRows linearRows}.
2900
+ *
2901
+ * @returns The removed linearRow or `null`
2541
2902
  */
2542
2903
  removeLinearRow(
2543
2904
  /**
@@ -2551,6 +2912,8 @@ declare namespace sap {
2551
2912
  * titlte of the icon rendered in the nested row field
2552
2913
  *
2553
2914
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2915
+ *
2916
+ * @returns Reference to `this` in order to allow method chaining
2554
2917
  */
2555
2918
  setIconTitle(
2556
2919
  /**
@@ -2564,6 +2927,8 @@ declare namespace sap {
2564
2927
  * label for data in a row field
2565
2928
  *
2566
2929
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2930
+ *
2931
+ * @returns Reference to `this` in order to allow method chaining
2567
2932
  */
2568
2933
  setLabel(
2569
2934
  /**
@@ -2577,6 +2942,8 @@ declare namespace sap {
2577
2942
  * source from which two or more systems are dependent
2578
2943
  *
2579
2944
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2945
+ *
2946
+ * @returns Reference to `this` in order to allow method chaining
2580
2947
  */
2581
2948
  setLinkSource(
2582
2949
  /**
@@ -2592,6 +2959,8 @@ declare namespace sap {
2592
2959
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2593
2960
  *
2594
2961
  * Default value is `Regular`.
2962
+ *
2963
+ * @returns Reference to `this` in order to allow method chaining
2595
2964
  */
2596
2965
  setRenderingSize(
2597
2966
  /**
@@ -2605,6 +2974,8 @@ declare namespace sap {
2605
2974
  * Image source of the icon on right
2606
2975
  *
2607
2976
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2977
+ *
2978
+ * @returns Reference to `this` in order to allow method chaining
2608
2979
  */
2609
2980
  setRightIconSrc(
2610
2981
  /**
@@ -2618,6 +2989,8 @@ declare namespace sap {
2618
2989
  * determines the type of landscape object
2619
2990
  *
2620
2991
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2992
+ *
2993
+ * @returns Reference to `this` in order to allow method chaining
2621
2994
  */
2622
2995
  setType(
2623
2996
  /**
@@ -2631,6 +3004,8 @@ declare namespace sap {
2631
3004
  * value of the data in a row field
2632
3005
  *
2633
3006
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3007
+ *
3008
+ * @returns Reference to `this` in order to allow method chaining
2634
3009
  */
2635
3010
  setValues(
2636
3011
  /**
@@ -2644,6 +3019,8 @@ declare namespace sap {
2644
3019
  * determines the type of value
2645
3020
  *
2646
3021
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3022
+ *
3023
+ * @returns Reference to `this` in order to allow method chaining
2647
3024
  */
2648
3025
  setValueType(
2649
3026
  /**
@@ -2692,6 +3069,8 @@ declare namespace sap {
2692
3069
  * enriches it with the information contained in `oClassInfo`.
2693
3070
  *
2694
3071
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3072
+ *
3073
+ * @returns Created class / constructor function
2695
3074
  */
2696
3075
  static extend<T extends Record<string, unknown>>(
2697
3076
  /**
@@ -2713,10 +3092,14 @@ declare namespace sap {
2713
3092
  ): Function;
2714
3093
  /**
2715
3094
  * Returns a metadata object for class sap.landvisz.internal.SingleDataContainer.
3095
+ *
3096
+ * @returns Metadata object describing this class
2716
3097
  */
2717
3098
  static getMetadata(): sap.ui.core.ElementMetadata;
2718
3099
  /**
2719
3100
  * Adds some property to the aggregation {@link #getProperties properties}.
3101
+ *
3102
+ * @returns Reference to `this` in order to allow method chaining
2720
3103
  */
2721
3104
  addProperty(
2722
3105
  /**
@@ -2731,6 +3114,8 @@ declare namespace sap {
2731
3114
  * otherwise it will be bound to this `sap.landvisz.internal.SingleDataContainer` itself.
2732
3115
  *
2733
3116
  * called when Single view model is closed
3117
+ *
3118
+ * @returns Reference to `this` in order to allow method chaining
2734
3119
  */
2735
3120
  attachClosed(
2736
3121
  /**
@@ -2755,6 +3140,8 @@ declare namespace sap {
2755
3140
  * otherwise it will be bound to this `sap.landvisz.internal.SingleDataContainer` itself.
2756
3141
  *
2757
3142
  * called when Single view model is closed
3143
+ *
3144
+ * @returns Reference to `this` in order to allow method chaining
2758
3145
  */
2759
3146
  attachClosed(
2760
3147
  /**
@@ -2769,12 +3156,16 @@ declare namespace sap {
2769
3156
  ): this;
2770
3157
  /**
2771
3158
  * Destroys all the properties in the aggregation {@link #getProperties properties}.
3159
+ *
3160
+ * @returns Reference to `this` in order to allow method chaining
2772
3161
  */
2773
3162
  destroyProperties(): this;
2774
3163
  /**
2775
3164
  * Detaches event handler `fnFunction` from the {@link #event:closed closed} event of this `sap.landvisz.internal.SingleDataContainer`.
2776
3165
  *
2777
3166
  * The passed function and listener object must match the ones used for event registration.
3167
+ *
3168
+ * @returns Reference to `this` in order to allow method chaining
2778
3169
  */
2779
3170
  detachClosed(
2780
3171
  /**
@@ -2788,6 +3179,8 @@ declare namespace sap {
2788
3179
  ): this;
2789
3180
  /**
2790
3181
  * Fires event {@link #event:closed closed} to attached listeners.
3182
+ *
3183
+ * @returns Reference to `this` in order to allow method chaining
2791
3184
  */
2792
3185
  fireClosed(
2793
3186
  /**
@@ -2799,6 +3192,8 @@ declare namespace sap {
2799
3192
  * Gets current value of property {@link #getHeader header}.
2800
3193
  *
2801
3194
  * header of the tab
3195
+ *
3196
+ * @returns Value of property `header`
2802
3197
  */
2803
3198
  getHeader(): string;
2804
3199
  /**
@@ -2811,11 +3206,15 @@ declare namespace sap {
2811
3206
  * Gets current value of property {@link #getRenderingSize renderingSize}.
2812
3207
  *
2813
3208
  * rendering size of the system
3209
+ *
3210
+ * @returns Value of property `renderingSize`
2814
3211
  */
2815
3212
  getRenderingSize(): string;
2816
3213
  /**
2817
3214
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getProperties properties}. and
2818
3215
  * returns its index if found or -1 otherwise.
3216
+ *
3217
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
2819
3218
  */
2820
3219
  indexOfProperty(
2821
3220
  /**
@@ -2825,6 +3224,8 @@ declare namespace sap {
2825
3224
  ): int;
2826
3225
  /**
2827
3226
  * Inserts a property into the aggregation {@link #getProperties properties}.
3227
+ *
3228
+ * @returns Reference to `this` in order to allow method chaining
2828
3229
  */
2829
3230
  insertProperty(
2830
3231
  /**
@@ -2846,10 +3247,14 @@ declare namespace sap {
2846
3247
  * Removes all the controls from the aggregation {@link #getProperties properties}.
2847
3248
  *
2848
3249
  * Additionally, it unregisters them from the hosting UIArea.
3250
+ *
3251
+ * @returns An array of the removed elements (might be empty)
2849
3252
  */
2850
3253
  removeAllProperties(): sap.ui.core.Control[];
2851
3254
  /**
2852
3255
  * Removes a property from the aggregation {@link #getProperties properties}.
3256
+ *
3257
+ * @returns The removed property or `null`
2853
3258
  */
2854
3259
  removeProperty(
2855
3260
  /**
@@ -2863,6 +3268,8 @@ declare namespace sap {
2863
3268
  * header of the tab
2864
3269
  *
2865
3270
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3271
+ *
3272
+ * @returns Reference to `this` in order to allow method chaining
2866
3273
  */
2867
3274
  setHeader(
2868
3275
  /**
@@ -2876,6 +3283,8 @@ declare namespace sap {
2876
3283
  * rendering size of the system
2877
3284
  *
2878
3285
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3286
+ *
3287
+ * @returns Reference to `this` in order to allow method chaining
2879
3288
  */
2880
3289
  setRenderingSize(
2881
3290
  /**
@@ -2924,6 +3333,8 @@ declare namespace sap {
2924
3333
  * with the information contained in `oClassInfo`.
2925
3334
  *
2926
3335
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3336
+ *
3337
+ * @returns Created class / constructor function
2927
3338
  */
2928
3339
  static extend<T extends Record<string, unknown>>(
2929
3340
  /**
@@ -2942,10 +3353,14 @@ declare namespace sap {
2942
3353
  ): Function;
2943
3354
  /**
2944
3355
  * Returns a metadata object for class sap.landvisz.internal.TreeField.
3356
+ *
3357
+ * @returns Metadata object describing this class
2945
3358
  */
2946
3359
  static getMetadata(): sap.ui.core.ElementMetadata;
2947
3360
  /**
2948
3361
  * Adds some treeNode to the aggregation {@link #getTreeNode treeNode}.
3362
+ *
3363
+ * @returns Reference to `this` in order to allow method chaining
2949
3364
  */
2950
3365
  addTreeNode(
2951
3366
  /**
@@ -2955,24 +3370,32 @@ declare namespace sap {
2955
3370
  ): this;
2956
3371
  /**
2957
3372
  * Destroys all the treeNode in the aggregation {@link #getTreeNode treeNode}.
3373
+ *
3374
+ * @returns Reference to `this` in order to allow method chaining
2958
3375
  */
2959
3376
  destroyTreeNode(): this;
2960
3377
  /**
2961
3378
  * Gets current value of property {@link #getBindingName bindingName}.
2962
3379
  *
2963
3380
  * binding name
3381
+ *
3382
+ * @returns Value of property `bindingName`
2964
3383
  */
2965
3384
  getBindingName(): string;
2966
3385
  /**
2967
3386
  * Gets current value of property {@link #getRenderingSize renderingSize}.
2968
3387
  *
2969
3388
  * rendering size of the control
3389
+ *
3390
+ * @returns Value of property `renderingSize`
2970
3391
  */
2971
3392
  getRenderingSize(): sap.landvisz.EntityCSSSize;
2972
3393
  /**
2973
3394
  * Gets current value of property {@link #getTreeModel treeModel}.
2974
3395
  *
2975
3396
  * treeModel to be rendered in the control
3397
+ *
3398
+ * @returns Value of property `treeModel`
2976
3399
  */
2977
3400
  getTreeModel(): object;
2978
3401
  /**
@@ -2984,6 +3407,8 @@ declare namespace sap {
2984
3407
  /**
2985
3408
  * Checks for the provided `sap.ui.commons.TreeNode` in the aggregation {@link #getTreeNode treeNode}. and
2986
3409
  * returns its index if found or -1 otherwise.
3410
+ *
3411
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
2987
3412
  */
2988
3413
  indexOfTreeNode(
2989
3414
  /**
@@ -2993,6 +3418,8 @@ declare namespace sap {
2993
3418
  ): int;
2994
3419
  /**
2995
3420
  * Inserts a treeNode into the aggregation {@link #getTreeNode treeNode}.
3421
+ *
3422
+ * @returns Reference to `this` in order to allow method chaining
2996
3423
  */
2997
3424
  insertTreeNode(
2998
3425
  /**
@@ -3010,10 +3437,14 @@ declare namespace sap {
3010
3437
  * Removes all the controls from the aggregation {@link #getTreeNode treeNode}.
3011
3438
  *
3012
3439
  * Additionally, it unregisters them from the hosting UIArea.
3440
+ *
3441
+ * @returns An array of the removed elements (might be empty)
3013
3442
  */
3014
3443
  removeAllTreeNode(): sap.ui.commons.TreeNode[];
3015
3444
  /**
3016
3445
  * Removes a treeNode from the aggregation {@link #getTreeNode treeNode}.
3446
+ *
3447
+ * @returns The removed treeNode or `null`
3017
3448
  */
3018
3449
  removeTreeNode(
3019
3450
  /**
@@ -3027,6 +3458,8 @@ declare namespace sap {
3027
3458
  * binding name
3028
3459
  *
3029
3460
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3461
+ *
3462
+ * @returns Reference to `this` in order to allow method chaining
3030
3463
  */
3031
3464
  setBindingName(
3032
3465
  /**
@@ -3040,6 +3473,8 @@ declare namespace sap {
3040
3473
  * rendering size of the control
3041
3474
  *
3042
3475
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3476
+ *
3477
+ * @returns Reference to `this` in order to allow method chaining
3043
3478
  */
3044
3479
  setRenderingSize(
3045
3480
  /**
@@ -3053,6 +3488,8 @@ declare namespace sap {
3053
3488
  * treeModel to be rendered in the control
3054
3489
  *
3055
3490
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3491
+ *
3492
+ * @returns Reference to `this` in order to allow method chaining
3056
3493
  */
3057
3494
  setTreeModel(
3058
3495
  /**
@@ -3102,7 +3539,8 @@ declare namespace sap {
3102
3539
  */
3103
3540
  type?:
3104
3541
  | sap.landvisz.ConnectionType
3105
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3542
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3543
+ | `{${string}}`;
3106
3544
 
3107
3545
  /**
3108
3546
  * ID which links the entities
@@ -3124,7 +3562,10 @@ declare namespace sap {
3124
3562
  /**
3125
3563
  * to show the overlay for highlightig
3126
3564
  */
3127
- showOverlay?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
3565
+ showOverlay?:
3566
+ | boolean
3567
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3568
+ | `{${string}}`;
3128
3569
 
3129
3570
  /**
3130
3571
  * Linear row field renderer for connection Entity
@@ -3132,7 +3573,8 @@ declare namespace sap {
3132
3573
  connectionData?:
3133
3574
  | sap.landvisz.internal.LinearRowField[]
3134
3575
  | sap.landvisz.internal.LinearRowField
3135
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
3576
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
3577
+ | `{${string}}`;
3136
3578
  }
3137
3579
 
3138
3580
  interface $ConnectorSettings extends sap.ui.core.$ControlSettings {
@@ -3158,7 +3600,8 @@ declare namespace sap {
3158
3600
  */
3159
3601
  type?:
3160
3602
  | sap.landvisz.LandscapeObject
3161
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3603
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3604
+ | `{${string}}`;
3162
3605
 
3163
3606
  /**
3164
3607
  * text of qualifier icon
@@ -3180,7 +3623,8 @@ declare namespace sap {
3180
3623
  */
3181
3624
  renderingSize?:
3182
3625
  | sap.landvisz.EntityCSSSize
3183
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3626
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3627
+ | `{${string}}`;
3184
3628
 
3185
3629
  /**
3186
3630
  * default state of the system
@@ -3195,14 +3639,18 @@ declare namespace sap {
3195
3639
  /**
3196
3640
  * actions of entity
3197
3641
  */
3198
- actions?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
3642
+ actions?:
3643
+ | object
3644
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3645
+ | `{${string}}`;
3199
3646
 
3200
3647
  /**
3201
3648
  * Modeling status of the entity
3202
3649
  */
3203
3650
  systemStatus?:
3204
3651
  | sap.landvisz.ModelingStatus
3205
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3652
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3653
+ | `{${string}}`;
3206
3654
 
3207
3655
  /**
3208
3656
  * tooltip for modelling status
@@ -3214,28 +3662,32 @@ declare namespace sap {
3214
3662
  */
3215
3663
  explodeViewWidth?:
3216
3664
  | sap.ui.core.CSSSize
3217
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3665
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3666
+ | `{${string}}`;
3218
3667
 
3219
3668
  /**
3220
3669
  * Height of the show all view
3221
3670
  */
3222
3671
  explodeViewHeight?:
3223
3672
  | sap.ui.core.CSSSize
3224
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3673
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3674
+ | `{${string}}`;
3225
3675
 
3226
3676
  /**
3227
3677
  * determines the visiblity of custom actions
3228
3678
  */
3229
3679
  showCustomActions?:
3230
3680
  | boolean
3231
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3681
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3682
+ | `{${string}}`;
3232
3683
 
3233
3684
  /**
3234
3685
  * determines the visiblity of entityactions
3235
3686
  */
3236
3687
  showEntityActions?:
3237
3688
  | boolean
3238
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3689
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3690
+ | `{${string}}`;
3239
3691
 
3240
3692
  /**
3241
3693
  * System entity ID
@@ -3257,7 +3709,8 @@ declare namespace sap {
3257
3709
  */
3258
3710
  componentType?:
3259
3711
  | sap.landvisz.ComponentType
3260
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3712
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3713
+ | `{${string}}`;
3261
3714
 
3262
3715
  /**
3263
3716
  * Tooltip for component type
@@ -3277,7 +3730,8 @@ declare namespace sap {
3277
3730
  dataContainers?:
3278
3731
  | sap.landvisz.internal.DataContainer[]
3279
3732
  | sap.landvisz.internal.DataContainer
3280
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
3733
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
3734
+ | `{${string}}`;
3281
3735
 
3282
3736
  /**
3283
3737
  * aggregation on action bar control
@@ -3285,7 +3739,8 @@ declare namespace sap {
3285
3739
  actionBar?:
3286
3740
  | sap.landvisz.internal.ActionBar[]
3287
3741
  | sap.landvisz.internal.ActionBar
3288
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
3742
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
3743
+ | `{${string}}`;
3289
3744
 
3290
3745
  /**
3291
3746
  * Modeling status icon
@@ -3314,17 +3769,24 @@ declare namespace sap {
3314
3769
  */
3315
3770
  defaultDependencyView?:
3316
3771
  | sap.landvisz.DependencyType
3317
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3772
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3773
+ | `{${string}}`;
3318
3774
 
3319
3775
  /**
3320
3776
  * Height of Viewer container
3321
3777
  */
3322
- height?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
3778
+ height?:
3779
+ | int
3780
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3781
+ | `{${string}}`;
3323
3782
 
3324
3783
  /**
3325
3784
  * width of the Viewer container
3326
3785
  */
3327
- width?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
3786
+ width?:
3787
+ | int
3788
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3789
+ | `{${string}}`;
3328
3790
 
3329
3791
  /**
3330
3792
  * Header of the rendered view
@@ -3350,28 +3812,32 @@ declare namespace sap {
3350
3812
  */
3351
3813
  boxDependencyLevels?:
3352
3814
  | string[]
3353
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3815
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3816
+ | `{${string}}`;
3354
3817
 
3355
3818
  /**
3356
3819
  * Navigator for dependency views
3357
3820
  */
3358
3821
  showDependencyNavigator?:
3359
3822
  | boolean
3360
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3823
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3824
+ | `{${string}}`;
3361
3825
 
3362
3826
  /**
3363
3827
  * Dependency View Visibility
3364
3828
  */
3365
3829
  visibleDependency?:
3366
3830
  | sap.landvisz.DependencyVisibility
3367
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3831
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3832
+ | `{${string}}`;
3368
3833
 
3369
3834
  /**
3370
3835
  * View type of landscape view
3371
3836
  */
3372
3837
  viewType?:
3373
3838
  | sap.landvisz.ViewType
3374
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3839
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3840
+ | `{${string}}`;
3375
3841
 
3376
3842
  /**
3377
3843
  * Text displayed in the dependency view
@@ -3381,19 +3847,26 @@ declare namespace sap {
3381
3847
  /**
3382
3848
  * control has to be added in the container or directly in the window.
3383
3849
  */
3384
- hasParent?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
3850
+ hasParent?:
3851
+ | boolean
3852
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3853
+ | `{${string}}`;
3385
3854
 
3386
3855
  /**
3387
3856
  * positions for selection view entity
3388
3857
  */
3389
3858
  selectionViewPosition?:
3390
3859
  | sap.landvisz.SelectionViewPosition
3391
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3860
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3861
+ | `{${string}}`;
3392
3862
 
3393
3863
  /**
3394
3864
  * close button visibility
3395
3865
  */
3396
- showClose?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
3866
+ showClose?:
3867
+ | boolean
3868
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3869
+ | `{${string}}`;
3397
3870
 
3398
3871
  /**
3399
3872
  * Label for the component view
@@ -3414,21 +3887,24 @@ declare namespace sap {
3414
3887
  */
3415
3888
  solutionOptionType?:
3416
3889
  | sap.landvisz.OptionType
3417
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3890
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3891
+ | `{${string}}`;
3418
3892
 
3419
3893
  /**
3420
3894
  * Type of solution rendered
3421
3895
  */
3422
3896
  solutionType?:
3423
3897
  | sap.landvisz.SolutionType
3424
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3898
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3899
+ | `{${string}}`;
3425
3900
 
3426
3901
  /**
3427
3902
  * Deployment type section
3428
3903
  */
3429
3904
  showDeploymentTypeSection?:
3430
3905
  | boolean
3431
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3906
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3907
+ | `{${string}}`;
3432
3908
 
3433
3909
  /**
3434
3910
  * Label for the options
@@ -3468,14 +3944,18 @@ declare namespace sap {
3468
3944
  /**
3469
3945
  * Specify the height of plugged content
3470
3946
  */
3471
- plugContentHeight?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
3947
+ plugContentHeight?:
3948
+ | int
3949
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3950
+ | `{${string}}`;
3472
3951
 
3473
3952
  /**
3474
3953
  * Type of line to be drawn
3475
3954
  */
3476
3955
  connectionLine?:
3477
3956
  | sap.landvisz.ConnectionLine
3478
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
3957
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3958
+ | `{${string}}`;
3479
3959
 
3480
3960
  /**
3481
3961
  * Systems to be rendered in the landscape viewer
@@ -3483,7 +3963,8 @@ declare namespace sap {
3483
3963
  systems?:
3484
3964
  | sap.landvisz.LandscapeEntity[]
3485
3965
  | sap.landvisz.LandscapeEntity
3486
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
3966
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
3967
+ | `{${string}}`;
3487
3968
 
3488
3969
  /**
3489
3970
  * Optional: connection Entity between two systems.
@@ -3491,7 +3972,8 @@ declare namespace sap {
3491
3972
  connectionEntities?:
3492
3973
  | sap.landvisz.ConnectionEntity[]
3493
3974
  | sap.landvisz.ConnectionEntity
3494
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
3975
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
3976
+ | `{${string}}`;
3495
3977
 
3496
3978
  /**
3497
3979
  * connector contains from and to information
@@ -3499,7 +3981,8 @@ declare namespace sap {
3499
3981
  connectors?:
3500
3982
  | sap.landvisz.Connector[]
3501
3983
  | sap.landvisz.Connector
3502
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
3984
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
3985
+ | `{${string}}`;
3503
3986
 
3504
3987
  /**
3505
3988
  * Options for the solution
@@ -3507,7 +3990,8 @@ declare namespace sap {
3507
3990
  solutionOptions?:
3508
3991
  | sap.landvisz.Option[]
3509
3992
  | sap.landvisz.Option
3510
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
3993
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
3994
+ | `{${string}}`;
3511
3995
 
3512
3996
  /**
3513
3997
  * a control which can be plugged into this control and can be only plugged in top section.
@@ -3536,7 +4020,8 @@ declare namespace sap {
3536
4020
  */
3537
4021
  renderingSize?:
3538
4022
  | sap.landvisz.EntityCSSSize
3539
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
4023
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
4024
+ | `{${string}}`;
3540
4025
  }
3541
4026
 
3542
4027
  interface $OptionSettings extends sap.ui.core.$ControlSettings {
@@ -3556,7 +4041,8 @@ declare namespace sap {
3556
4041
  optionEntities?:
3557
4042
  | sap.landvisz.OptionEntity[]
3558
4043
  | sap.landvisz.OptionEntity
3559
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
4044
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
4045
+ | `{${string}}`;
3560
4046
  }
3561
4047
 
3562
4048
  interface $OptionEntitySettings extends sap.landvisz.$OptionSourceSettings {
@@ -3568,12 +4054,18 @@ declare namespace sap {
3568
4054
  /**
3569
4055
  * determines current selected option
3570
4056
  */
3571
- selected?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
4057
+ selected?:
4058
+ | boolean
4059
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
4060
+ | `{${string}}`;
3572
4061
 
3573
4062
  /**
3574
4063
  * enabling/disabling options
3575
4064
  */
3576
- enable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
4065
+ enable?:
4066
+ | boolean
4067
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
4068
+ | `{${string}}`;
3577
4069
 
3578
4070
  /**
3579
4071
  * tooltip for options
@@ -3588,7 +4080,8 @@ declare namespace sap {
3588
4080
  optionSources?:
3589
4081
  | sap.landvisz.OptionSource[]
3590
4082
  | sap.landvisz.OptionSource
3591
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
4083
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
4084
+ | `{${string}}`;
3592
4085
 
3593
4086
  /**
3594
4087
  * Select event for option entity
@@ -3645,6 +4138,8 @@ declare namespace sap {
3645
4138
  * with the information contained in `oClassInfo`.
3646
4139
  *
3647
4140
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4141
+ *
4142
+ * @returns Created class / constructor function
3648
4143
  */
3649
4144
  static extend<T extends Record<string, unknown>>(
3650
4145
  /**
@@ -3663,10 +4158,14 @@ declare namespace sap {
3663
4158
  ): Function;
3664
4159
  /**
3665
4160
  * Returns a metadata object for class sap.landvisz.ConnectionEntity.
4161
+ *
4162
+ * @returns Metadata object describing this class
3666
4163
  */
3667
4164
  static getMetadata(): sap.ui.core.ElementMetadata;
3668
4165
  /**
3669
4166
  * Adds some connectionData to the aggregation {@link #getConnectionData connectionData}.
4167
+ *
4168
+ * @returns Reference to `this` in order to allow method chaining
3670
4169
  */
3671
4170
  addConnectionData(
3672
4171
  /**
@@ -3676,6 +4175,8 @@ declare namespace sap {
3676
4175
  ): this;
3677
4176
  /**
3678
4177
  * Destroys all the connectionData in the aggregation {@link #getConnectionData connectionData}.
4178
+ *
4179
+ * @returns Reference to `this` in order to allow method chaining
3679
4180
  */
3680
4181
  destroyConnectionData(): this;
3681
4182
  /**
@@ -3688,24 +4189,32 @@ declare namespace sap {
3688
4189
  * Gets current value of property {@link #getConnectionId connectionId}.
3689
4190
  *
3690
4191
  * id of connection Entity
4192
+ *
4193
+ * @returns Value of property `connectionId`
3691
4194
  */
3692
4195
  getConnectionId(): string;
3693
4196
  /**
3694
4197
  * Gets current value of property {@link #getDependencyTooltip dependencyTooltip}.
3695
4198
  *
3696
4199
  * tooltip for dependency type icon
4200
+ *
4201
+ * @returns Value of property `dependencyTooltip`
3697
4202
  */
3698
4203
  getDependencyTooltip(): string;
3699
4204
  /**
3700
4205
  * Gets current value of property {@link #getLinkedHeader linkedHeader}.
3701
4206
  *
3702
4207
  * link header data that is shared with in the entities
4208
+ *
4209
+ * @returns Value of property `linkedHeader`
3703
4210
  */
3704
4211
  getLinkedHeader(): string;
3705
4212
  /**
3706
4213
  * Gets current value of property {@link #getLinkId linkId}.
3707
4214
  *
3708
4215
  * ID which links the entities
4216
+ *
4217
+ * @returns Value of property `linkId`
3709
4218
  */
3710
4219
  getLinkId(): string;
3711
4220
  /**
@@ -3714,23 +4223,31 @@ declare namespace sap {
3714
4223
  * to show the overlay for highlightig
3715
4224
  *
3716
4225
  * Default value is `true`.
4226
+ *
4227
+ * @returns Value of property `showOverlay`
3717
4228
  */
3718
4229
  getShowOverlay(): boolean;
3719
4230
  /**
3720
4231
  * Gets current value of property {@link #getSize size}.
3721
4232
  *
3722
4233
  * size of connection Entity
4234
+ *
4235
+ * @returns Value of property `size`
3723
4236
  */
3724
4237
  getSize(): string;
3725
4238
  /**
3726
4239
  * Gets current value of property {@link #getType type}.
3727
4240
  *
3728
4241
  * type of a connection Entity
4242
+ *
4243
+ * @returns Value of property `type`
3729
4244
  */
3730
4245
  getType(): sap.landvisz.ConnectionType;
3731
4246
  /**
3732
4247
  * Checks for the provided `sap.landvisz.internal.LinearRowField` in the aggregation {@link #getConnectionData
3733
4248
  * connectionData}. and returns its index if found or -1 otherwise.
4249
+ *
4250
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
3734
4251
  */
3735
4252
  indexOfConnectionData(
3736
4253
  /**
@@ -3740,6 +4257,8 @@ declare namespace sap {
3740
4257
  ): int;
3741
4258
  /**
3742
4259
  * Inserts a connectionData into the aggregation {@link #getConnectionData connectionData}.
4260
+ *
4261
+ * @returns Reference to `this` in order to allow method chaining
3743
4262
  */
3744
4263
  insertConnectionData(
3745
4264
  /**
@@ -3757,10 +4276,14 @@ declare namespace sap {
3757
4276
  * Removes all the controls from the aggregation {@link #getConnectionData connectionData}.
3758
4277
  *
3759
4278
  * Additionally, it unregisters them from the hosting UIArea.
4279
+ *
4280
+ * @returns An array of the removed elements (might be empty)
3760
4281
  */
3761
4282
  removeAllConnectionData(): sap.landvisz.internal.LinearRowField[];
3762
4283
  /**
3763
4284
  * Removes a connectionData from the aggregation {@link #getConnectionData connectionData}.
4285
+ *
4286
+ * @returns The removed connectionData or `null`
3764
4287
  */
3765
4288
  removeConnectionData(
3766
4289
  /**
@@ -3774,6 +4297,8 @@ declare namespace sap {
3774
4297
  * id of connection Entity
3775
4298
  *
3776
4299
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4300
+ *
4301
+ * @returns Reference to `this` in order to allow method chaining
3777
4302
  */
3778
4303
  setConnectionId(
3779
4304
  /**
@@ -3787,6 +4312,8 @@ declare namespace sap {
3787
4312
  * tooltip for dependency type icon
3788
4313
  *
3789
4314
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4315
+ *
4316
+ * @returns Reference to `this` in order to allow method chaining
3790
4317
  */
3791
4318
  setDependencyTooltip(
3792
4319
  /**
@@ -3800,6 +4327,8 @@ declare namespace sap {
3800
4327
  * link header data that is shared with in the entities
3801
4328
  *
3802
4329
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4330
+ *
4331
+ * @returns Reference to `this` in order to allow method chaining
3803
4332
  */
3804
4333
  setLinkedHeader(
3805
4334
  /**
@@ -3813,6 +4342,8 @@ declare namespace sap {
3813
4342
  * ID which links the entities
3814
4343
  *
3815
4344
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4345
+ *
4346
+ * @returns Reference to `this` in order to allow method chaining
3816
4347
  */
3817
4348
  setLinkId(
3818
4349
  /**
@@ -3828,6 +4359,8 @@ declare namespace sap {
3828
4359
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3829
4360
  *
3830
4361
  * Default value is `true`.
4362
+ *
4363
+ * @returns Reference to `this` in order to allow method chaining
3831
4364
  */
3832
4365
  setShowOverlay(
3833
4366
  /**
@@ -3841,6 +4374,8 @@ declare namespace sap {
3841
4374
  * size of connection Entity
3842
4375
  *
3843
4376
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4377
+ *
4378
+ * @returns Reference to `this` in order to allow method chaining
3844
4379
  */
3845
4380
  setSize(
3846
4381
  /**
@@ -3854,6 +4389,8 @@ declare namespace sap {
3854
4389
  * type of a connection Entity
3855
4390
  *
3856
4391
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4392
+ *
4393
+ * @returns Reference to `this` in order to allow method chaining
3857
4394
  */
3858
4395
  setType(
3859
4396
  /**
@@ -3904,6 +4441,8 @@ declare namespace sap {
3904
4441
  * information contained in `oClassInfo`.
3905
4442
  *
3906
4443
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4444
+ *
4445
+ * @returns Created class / constructor function
3907
4446
  */
3908
4447
  static extend<T extends Record<string, unknown>>(
3909
4448
  /**
@@ -3922,18 +4461,24 @@ declare namespace sap {
3922
4461
  ): Function;
3923
4462
  /**
3924
4463
  * Returns a metadata object for class sap.landvisz.Connector.
4464
+ *
4465
+ * @returns Metadata object describing this class
3925
4466
  */
3926
4467
  static getMetadata(): sap.ui.core.ElementMetadata;
3927
4468
  /**
3928
4469
  * Gets current value of property {@link #getSource source}.
3929
4470
  *
3930
4471
  * source of a connection to be drawn
4472
+ *
4473
+ * @returns Value of property `source`
3931
4474
  */
3932
4475
  getSource(): string;
3933
4476
  /**
3934
4477
  * Gets current value of property {@link #getTarget target}.
3935
4478
  *
3936
4479
  * destination of the connection
4480
+ *
4481
+ * @returns Value of property `target`
3937
4482
  */
3938
4483
  getTarget(): string;
3939
4484
  /**
@@ -3942,6 +4487,8 @@ declare namespace sap {
3942
4487
  * source of a connection to be drawn
3943
4488
  *
3944
4489
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4490
+ *
4491
+ * @returns Reference to `this` in order to allow method chaining
3945
4492
  */
3946
4493
  setSource(
3947
4494
  /**
@@ -3955,6 +4502,8 @@ declare namespace sap {
3955
4502
  * destination of the connection
3956
4503
  *
3957
4504
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4505
+ *
4506
+ * @returns Reference to `this` in order to allow method chaining
3958
4507
  */
3959
4508
  setTarget(
3960
4509
  /**
@@ -4005,6 +4554,8 @@ declare namespace sap {
4005
4554
  * the information contained in `oClassInfo`.
4006
4555
  *
4007
4556
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4557
+ *
4558
+ * @returns Created class / constructor function
4008
4559
  */
4009
4560
  static extend<T extends Record<string, unknown>>(
4010
4561
  /**
@@ -4023,10 +4574,14 @@ declare namespace sap {
4023
4574
  ): Function;
4024
4575
  /**
4025
4576
  * Returns a metadata object for class sap.landvisz.LandscapeEntity.
4577
+ *
4578
+ * @returns Metadata object describing this class
4026
4579
  */
4027
4580
  static getMetadata(): sap.ui.core.ElementMetadata;
4028
4581
  /**
4029
4582
  * Adds some actionBar to the aggregation {@link #getActionBar actionBar}.
4583
+ *
4584
+ * @returns Reference to `this` in order to allow method chaining
4030
4585
  */
4031
4586
  addActionBar(
4032
4587
  /**
@@ -4036,6 +4591,8 @@ declare namespace sap {
4036
4591
  ): this;
4037
4592
  /**
4038
4593
  * Adds some dataContainer to the aggregation {@link #getDataContainers dataContainers}.
4594
+ *
4595
+ * @returns Reference to `this` in order to allow method chaining
4039
4596
  */
4040
4597
  addDataContainer(
4041
4598
  /**
@@ -4051,6 +4608,8 @@ declare namespace sap {
4051
4608
  * otherwise it will be bound to this `sap.landvisz.LandscapeEntity` itself.
4052
4609
  *
4053
4610
  * fires an event on hovering over identification system icon
4611
+ *
4612
+ * @returns Reference to `this` in order to allow method chaining
4054
4613
  */
4055
4614
  attachMouseOverIdenIcon(
4056
4615
  /**
@@ -4075,6 +4634,8 @@ declare namespace sap {
4075
4634
  * otherwise it will be bound to this `sap.landvisz.LandscapeEntity` itself.
4076
4635
  *
4077
4636
  * fires an event on hovering over identification system icon
4637
+ *
4638
+ * @returns Reference to `this` in order to allow method chaining
4078
4639
  */
4079
4640
  attachMouseOverIdenIcon(
4080
4641
  /**
@@ -4093,6 +4654,8 @@ declare namespace sap {
4093
4654
  * otherwise it will be bound to this `sap.landvisz.LandscapeEntity` itself.
4094
4655
  *
4095
4656
  * fires an event on clicking the modelling status
4657
+ *
4658
+ * @returns Reference to `this` in order to allow method chaining
4096
4659
  */
4097
4660
  attachStatusSelect(
4098
4661
  /**
@@ -4116,6 +4679,8 @@ declare namespace sap {
4116
4679
  * otherwise it will be bound to this `sap.landvisz.LandscapeEntity` itself.
4117
4680
  *
4118
4681
  * fires an event on clicking the modelling status
4682
+ *
4683
+ * @returns Reference to `this` in order to allow method chaining
4119
4684
  */
4120
4685
  attachStatusSelect(
4121
4686
  /**
@@ -4135,6 +4700,8 @@ declare namespace sap {
4135
4700
  * otherwise it will be bound to this `sap.landvisz.LandscapeEntity` itself.
4136
4701
  *
4137
4702
  * Fired when info Icon of track entity clicked
4703
+ *
4704
+ * @returns Reference to `this` in order to allow method chaining
4138
4705
  */
4139
4706
  attachTrackInfoPress(
4140
4707
  /**
@@ -4159,6 +4726,8 @@ declare namespace sap {
4159
4726
  * otherwise it will be bound to this `sap.landvisz.LandscapeEntity` itself.
4160
4727
  *
4161
4728
  * Fired when info Icon of track entity clicked
4729
+ *
4730
+ * @returns Reference to `this` in order to allow method chaining
4162
4731
  */
4163
4732
  attachTrackInfoPress(
4164
4733
  /**
@@ -4172,14 +4741,20 @@ declare namespace sap {
4172
4741
  ): this;
4173
4742
  /**
4174
4743
  * Destroys all the actionBar in the aggregation {@link #getActionBar actionBar}.
4744
+ *
4745
+ * @returns Reference to `this` in order to allow method chaining
4175
4746
  */
4176
4747
  destroyActionBar(): this;
4177
4748
  /**
4178
4749
  * Destroys all the dataContainers in the aggregation {@link #getDataContainers dataContainers}.
4750
+ *
4751
+ * @returns Reference to `this` in order to allow method chaining
4179
4752
  */
4180
4753
  destroyDataContainers(): this;
4181
4754
  /**
4182
4755
  * Destroys the entityStatus in the aggregation {@link #getEntityStatus entityStatus}.
4756
+ *
4757
+ * @returns Reference to `this` in order to allow method chaining
4183
4758
  */
4184
4759
  destroyEntityStatus(): this;
4185
4760
  /**
@@ -4187,6 +4762,8 @@ declare namespace sap {
4187
4762
  * of this `sap.landvisz.LandscapeEntity`.
4188
4763
  *
4189
4764
  * The passed function and listener object must match the ones used for event registration.
4765
+ *
4766
+ * @returns Reference to `this` in order to allow method chaining
4190
4767
  */
4191
4768
  detachMouseOverIdenIcon(
4192
4769
  /**
@@ -4202,6 +4779,8 @@ declare namespace sap {
4202
4779
  * Detaches event handler `fnFunction` from the {@link #event:statusSelect statusSelect} event of this `sap.landvisz.LandscapeEntity`.
4203
4780
  *
4204
4781
  * The passed function and listener object must match the ones used for event registration.
4782
+ *
4783
+ * @returns Reference to `this` in order to allow method chaining
4205
4784
  */
4206
4785
  detachStatusSelect(
4207
4786
  /**
@@ -4218,6 +4797,8 @@ declare namespace sap {
4218
4797
  * `sap.landvisz.LandscapeEntity`.
4219
4798
  *
4220
4799
  * The passed function and listener object must match the ones used for event registration.
4800
+ *
4801
+ * @returns Reference to `this` in order to allow method chaining
4221
4802
  */
4222
4803
  detachTrackInfoPress(
4223
4804
  /**
@@ -4231,6 +4812,8 @@ declare namespace sap {
4231
4812
  ): this;
4232
4813
  /**
4233
4814
  * Fires event {@link #event:mouseOverIdenIcon mouseOverIdenIcon} to attached listeners.
4815
+ *
4816
+ * @returns Reference to `this` in order to allow method chaining
4234
4817
  */
4235
4818
  fireMouseOverIdenIcon(
4236
4819
  /**
@@ -4240,6 +4823,8 @@ declare namespace sap {
4240
4823
  ): this;
4241
4824
  /**
4242
4825
  * Fires event {@link #event:statusSelect statusSelect} to attached listeners.
4826
+ *
4827
+ * @returns Reference to `this` in order to allow method chaining
4243
4828
  */
4244
4829
  fireStatusSelect(
4245
4830
  /**
@@ -4249,6 +4834,8 @@ declare namespace sap {
4249
4834
  ): this;
4250
4835
  /**
4251
4836
  * Fires event {@link #event:trackInfoPress trackInfoPress} to attached listeners.
4837
+ *
4838
+ * @returns Reference to `this` in order to allow method chaining
4252
4839
  */
4253
4840
  fireTrackInfoPress(
4254
4841
  /**
@@ -4266,18 +4853,24 @@ declare namespace sap {
4266
4853
  * Gets current value of property {@link #getActions actions}.
4267
4854
  *
4268
4855
  * actions of entity
4856
+ *
4857
+ * @returns Value of property `actions`
4269
4858
  */
4270
4859
  getActions(): object;
4271
4860
  /**
4272
4861
  * Gets current value of property {@link #getComponentType componentType}.
4273
4862
  *
4274
4863
  * Type of a soution component/deployment type entity
4864
+ *
4865
+ * @returns Value of property `componentType`
4275
4866
  */
4276
4867
  getComponentType(): sap.landvisz.ComponentType;
4277
4868
  /**
4278
4869
  * Gets current value of property {@link #getComponentTypeTooltip componentTypeTooltip}.
4279
4870
  *
4280
4871
  * Tooltip for component type
4872
+ *
4873
+ * @returns Value of property `componentTypeTooltip`
4281
4874
  */
4282
4875
  getComponentTypeTooltip(): string;
4283
4876
  /**
@@ -4290,12 +4883,16 @@ declare namespace sap {
4290
4883
  * Gets current value of property {@link #getDefaultState defaultState}.
4291
4884
  *
4292
4885
  * default state of the system
4886
+ *
4887
+ * @returns Value of property `defaultState`
4293
4888
  */
4294
4889
  getDefaultState(): string;
4295
4890
  /**
4296
4891
  * Gets current value of property {@link #getDescription description}.
4297
4892
  *
4298
4893
  * description of the identification region
4894
+ *
4895
+ * @returns Value of property `description`
4299
4896
  */
4300
4897
  getDescription(): string;
4301
4898
  /**
@@ -4308,30 +4905,40 @@ declare namespace sap {
4308
4905
  * Gets current value of property {@link #getExplodeViewHeight explodeViewHeight}.
4309
4906
  *
4310
4907
  * Height of the show all view
4908
+ *
4909
+ * @returns Value of property `explodeViewHeight`
4311
4910
  */
4312
4911
  getExplodeViewHeight(): sap.ui.core.CSSSize;
4313
4912
  /**
4314
4913
  * Gets current value of property {@link #getExplodeViewWidth explodeViewWidth}.
4315
4914
  *
4316
4915
  * Width of the show all view
4916
+ *
4917
+ * @returns Value of property `explodeViewWidth`
4317
4918
  */
4318
4919
  getExplodeViewWidth(): sap.ui.core.CSSSize;
4319
4920
  /**
4320
4921
  * Gets current value of property {@link #getQualifierText qualifierText}.
4321
4922
  *
4322
4923
  * text of qualifier icon
4924
+ *
4925
+ * @returns Value of property `qualifierText`
4323
4926
  */
4324
4927
  getQualifierText(): string;
4325
4928
  /**
4326
4929
  * Gets current value of property {@link #getQualifierTooltip qualifierTooltip}.
4327
4930
  *
4328
4931
  * tooltip for qualifier icon
4932
+ *
4933
+ * @returns Value of property `qualifierTooltip`
4329
4934
  */
4330
4935
  getQualifierTooltip(): string;
4331
4936
  /**
4332
4937
  * Gets current value of property {@link #getQualifierType qualifierType}.
4333
4938
  *
4334
4939
  * text of the qualifier that specifies the server
4940
+ *
4941
+ * @returns Value of property `qualifierType`
4335
4942
  */
4336
4943
  getQualifierType(): string;
4337
4944
  /**
@@ -4340,6 +4947,8 @@ declare namespace sap {
4340
4947
  * rendering size of a system
4341
4948
  *
4342
4949
  * Default value is `Regular`.
4950
+ *
4951
+ * @returns Value of property `renderingSize`
4343
4952
  */
4344
4953
  getRenderingSize(): sap.landvisz.EntityCSSSize;
4345
4954
  /**
@@ -4348,6 +4957,8 @@ declare namespace sap {
4348
4957
  * determines the visiblity of custom actions
4349
4958
  *
4350
4959
  * Default value is `true`.
4960
+ *
4961
+ * @returns Value of property `showCustomActions`
4351
4962
  */
4352
4963
  getShowCustomActions(): boolean;
4353
4964
  /**
@@ -4356,36 +4967,48 @@ declare namespace sap {
4356
4967
  * determines the visiblity of entityactions
4357
4968
  *
4358
4969
  * Default value is `true`.
4970
+ *
4971
+ * @returns Value of property `showEntityActions`
4359
4972
  */
4360
4973
  getShowEntityActions(): boolean;
4361
4974
  /**
4362
4975
  * Gets current value of property {@link #getStateIconSrc stateIconSrc}.
4363
4976
  *
4364
4977
  * Icon source of the state of entity
4978
+ *
4979
+ * @returns Value of property `stateIconSrc`
4365
4980
  */
4366
4981
  getStateIconSrc(): string;
4367
4982
  /**
4368
4983
  * Gets current value of property {@link #getStateIconTooltip stateIconTooltip}.
4369
4984
  *
4370
4985
  * tooltip of modelling status icon
4986
+ *
4987
+ * @returns Value of property `stateIconTooltip`
4371
4988
  */
4372
4989
  getStateIconTooltip(): string;
4373
4990
  /**
4374
4991
  * Gets current value of property {@link #getStatusTooltip statusTooltip}.
4375
4992
  *
4376
4993
  * tooltip for modelling status
4994
+ *
4995
+ * @returns Value of property `statusTooltip`
4377
4996
  */
4378
4997
  getStatusTooltip(): string;
4379
4998
  /**
4380
4999
  * Gets current value of property {@link #getSystemId systemId}.
4381
5000
  *
4382
5001
  * System entity ID
5002
+ *
5003
+ * @returns Value of property `systemId`
4383
5004
  */
4384
5005
  getSystemId(): string;
4385
5006
  /**
4386
5007
  * Gets current value of property {@link #getSystemName systemName}.
4387
5008
  *
4388
5009
  * name of the system
5010
+ *
5011
+ * @returns Value of property `systemName`
4389
5012
  */
4390
5013
  getSystemName(): string;
4391
5014
  /**
@@ -4394,23 +5017,31 @@ declare namespace sap {
4394
5017
  * Modeling status of the entity
4395
5018
  *
4396
5019
  * Default value is `NORMAL`.
5020
+ *
5021
+ * @returns Value of property `systemStatus`
4397
5022
  */
4398
5023
  getSystemStatus(): sap.landvisz.ModelingStatus;
4399
5024
  /**
4400
5025
  * Gets current value of property {@link #getTrackSystemCount trackSystemCount}.
4401
5026
  *
4402
5027
  * Systems count in the track
5028
+ *
5029
+ * @returns Value of property `trackSystemCount`
4403
5030
  */
4404
5031
  getTrackSystemCount(): string;
4405
5032
  /**
4406
5033
  * Gets current value of property {@link #getType type}.
4407
5034
  *
4408
5035
  * type of the system rendered
5036
+ *
5037
+ * @returns Value of property `type`
4409
5038
  */
4410
5039
  getType(): sap.landvisz.LandscapeObject;
4411
5040
  /**
4412
5041
  * Checks for the provided `sap.landvisz.internal.ActionBar` in the aggregation {@link #getActionBar actionBar}.
4413
5042
  * and returns its index if found or -1 otherwise.
5043
+ *
5044
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
4414
5045
  */
4415
5046
  indexOfActionBar(
4416
5047
  /**
@@ -4421,6 +5052,8 @@ declare namespace sap {
4421
5052
  /**
4422
5053
  * Checks for the provided `sap.landvisz.internal.DataContainer` in the aggregation {@link #getDataContainers
4423
5054
  * dataContainers}. and returns its index if found or -1 otherwise.
5055
+ *
5056
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
4424
5057
  */
4425
5058
  indexOfDataContainer(
4426
5059
  /**
@@ -4430,6 +5063,8 @@ declare namespace sap {
4430
5063
  ): int;
4431
5064
  /**
4432
5065
  * Inserts a actionBar into the aggregation {@link #getActionBar actionBar}.
5066
+ *
5067
+ * @returns Reference to `this` in order to allow method chaining
4433
5068
  */
4434
5069
  insertActionBar(
4435
5070
  /**
@@ -4445,6 +5080,8 @@ declare namespace sap {
4445
5080
  ): this;
4446
5081
  /**
4447
5082
  * Inserts a dataContainer into the aggregation {@link #getDataContainers dataContainers}.
5083
+ *
5084
+ * @returns Reference to `this` in order to allow method chaining
4448
5085
  */
4449
5086
  insertDataContainer(
4450
5087
  /**
@@ -4460,6 +5097,8 @@ declare namespace sap {
4460
5097
  ): this;
4461
5098
  /**
4462
5099
  * Removes a actionBar from the aggregation {@link #getActionBar actionBar}.
5100
+ *
5101
+ * @returns The removed actionBar or `null`
4463
5102
  */
4464
5103
  removeActionBar(
4465
5104
  /**
@@ -4471,16 +5110,22 @@ declare namespace sap {
4471
5110
  * Removes all the controls from the aggregation {@link #getActionBar actionBar}.
4472
5111
  *
4473
5112
  * Additionally, it unregisters them from the hosting UIArea.
5113
+ *
5114
+ * @returns An array of the removed elements (might be empty)
4474
5115
  */
4475
5116
  removeAllActionBar(): sap.landvisz.internal.ActionBar[];
4476
5117
  /**
4477
5118
  * Removes all the controls from the aggregation {@link #getDataContainers dataContainers}.
4478
5119
  *
4479
5120
  * Additionally, it unregisters them from the hosting UIArea.
5121
+ *
5122
+ * @returns An array of the removed elements (might be empty)
4480
5123
  */
4481
5124
  removeAllDataContainers(): sap.landvisz.internal.DataContainer[];
4482
5125
  /**
4483
5126
  * Removes a dataContainer from the aggregation {@link #getDataContainers dataContainers}.
5127
+ *
5128
+ * @returns The removed dataContainer or `null`
4484
5129
  */
4485
5130
  removeDataContainer(
4486
5131
  /**
@@ -4494,6 +5139,8 @@ declare namespace sap {
4494
5139
  * actions of entity
4495
5140
  *
4496
5141
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5142
+ *
5143
+ * @returns Reference to `this` in order to allow method chaining
4497
5144
  */
4498
5145
  setActions(
4499
5146
  /**
@@ -4507,6 +5154,8 @@ declare namespace sap {
4507
5154
  * Type of a soution component/deployment type entity
4508
5155
  *
4509
5156
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5157
+ *
5158
+ * @returns Reference to `this` in order to allow method chaining
4510
5159
  */
4511
5160
  setComponentType(
4512
5161
  /**
@@ -4520,6 +5169,8 @@ declare namespace sap {
4520
5169
  * Tooltip for component type
4521
5170
  *
4522
5171
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5172
+ *
5173
+ * @returns Reference to `this` in order to allow method chaining
4523
5174
  */
4524
5175
  setComponentTypeTooltip(
4525
5176
  /**
@@ -4533,6 +5184,8 @@ declare namespace sap {
4533
5184
  * default state of the system
4534
5185
  *
4535
5186
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5187
+ *
5188
+ * @returns Reference to `this` in order to allow method chaining
4536
5189
  */
4537
5190
  setDefaultState(
4538
5191
  /**
@@ -4546,6 +5199,8 @@ declare namespace sap {
4546
5199
  * description of the identification region
4547
5200
  *
4548
5201
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5202
+ *
5203
+ * @returns Reference to `this` in order to allow method chaining
4549
5204
  */
4550
5205
  setDescription(
4551
5206
  /**
@@ -4555,6 +5210,8 @@ declare namespace sap {
4555
5210
  ): this;
4556
5211
  /**
4557
5212
  * Sets the aggregated {@link #getEntityStatus entityStatus}.
5213
+ *
5214
+ * @returns Reference to `this` in order to allow method chaining
4558
5215
  */
4559
5216
  setEntityStatus(
4560
5217
  /**
@@ -4568,6 +5225,8 @@ declare namespace sap {
4568
5225
  * Height of the show all view
4569
5226
  *
4570
5227
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5228
+ *
5229
+ * @returns Reference to `this` in order to allow method chaining
4571
5230
  */
4572
5231
  setExplodeViewHeight(
4573
5232
  /**
@@ -4581,6 +5240,8 @@ declare namespace sap {
4581
5240
  * Width of the show all view
4582
5241
  *
4583
5242
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5243
+ *
5244
+ * @returns Reference to `this` in order to allow method chaining
4584
5245
  */
4585
5246
  setExplodeViewWidth(
4586
5247
  /**
@@ -4594,6 +5255,8 @@ declare namespace sap {
4594
5255
  * text of qualifier icon
4595
5256
  *
4596
5257
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5258
+ *
5259
+ * @returns Reference to `this` in order to allow method chaining
4597
5260
  */
4598
5261
  setQualifierText(
4599
5262
  /**
@@ -4607,6 +5270,8 @@ declare namespace sap {
4607
5270
  * tooltip for qualifier icon
4608
5271
  *
4609
5272
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5273
+ *
5274
+ * @returns Reference to `this` in order to allow method chaining
4610
5275
  */
4611
5276
  setQualifierTooltip(
4612
5277
  /**
@@ -4620,6 +5285,8 @@ declare namespace sap {
4620
5285
  * text of the qualifier that specifies the server
4621
5286
  *
4622
5287
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5288
+ *
5289
+ * @returns Reference to `this` in order to allow method chaining
4623
5290
  */
4624
5291
  setQualifierType(
4625
5292
  /**
@@ -4635,6 +5302,8 @@ declare namespace sap {
4635
5302
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4636
5303
  *
4637
5304
  * Default value is `Regular`.
5305
+ *
5306
+ * @returns Reference to `this` in order to allow method chaining
4638
5307
  */
4639
5308
  setRenderingSize(
4640
5309
  /**
@@ -4650,6 +5319,8 @@ declare namespace sap {
4650
5319
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4651
5320
  *
4652
5321
  * Default value is `true`.
5322
+ *
5323
+ * @returns Reference to `this` in order to allow method chaining
4653
5324
  */
4654
5325
  setShowCustomActions(
4655
5326
  /**
@@ -4665,6 +5336,8 @@ declare namespace sap {
4665
5336
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4666
5337
  *
4667
5338
  * Default value is `true`.
5339
+ *
5340
+ * @returns Reference to `this` in order to allow method chaining
4668
5341
  */
4669
5342
  setShowEntityActions(
4670
5343
  /**
@@ -4678,6 +5351,8 @@ declare namespace sap {
4678
5351
  * Icon source of the state of entity
4679
5352
  *
4680
5353
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5354
+ *
5355
+ * @returns Reference to `this` in order to allow method chaining
4681
5356
  */
4682
5357
  setStateIconSrc(
4683
5358
  /**
@@ -4691,6 +5366,8 @@ declare namespace sap {
4691
5366
  * tooltip of modelling status icon
4692
5367
  *
4693
5368
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5369
+ *
5370
+ * @returns Reference to `this` in order to allow method chaining
4694
5371
  */
4695
5372
  setStateIconTooltip(
4696
5373
  /**
@@ -4704,6 +5381,8 @@ declare namespace sap {
4704
5381
  * tooltip for modelling status
4705
5382
  *
4706
5383
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5384
+ *
5385
+ * @returns Reference to `this` in order to allow method chaining
4707
5386
  */
4708
5387
  setStatusTooltip(
4709
5388
  /**
@@ -4717,6 +5396,8 @@ declare namespace sap {
4717
5396
  * System entity ID
4718
5397
  *
4719
5398
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5399
+ *
5400
+ * @returns Reference to `this` in order to allow method chaining
4720
5401
  */
4721
5402
  setSystemId(
4722
5403
  /**
@@ -4730,6 +5411,8 @@ declare namespace sap {
4730
5411
  * name of the system
4731
5412
  *
4732
5413
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5414
+ *
5415
+ * @returns Reference to `this` in order to allow method chaining
4733
5416
  */
4734
5417
  setSystemName(
4735
5418
  /**
@@ -4745,6 +5428,8 @@ declare namespace sap {
4745
5428
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4746
5429
  *
4747
5430
  * Default value is `NORMAL`.
5431
+ *
5432
+ * @returns Reference to `this` in order to allow method chaining
4748
5433
  */
4749
5434
  setSystemStatus(
4750
5435
  /**
@@ -4758,6 +5443,8 @@ declare namespace sap {
4758
5443
  * Systems count in the track
4759
5444
  *
4760
5445
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5446
+ *
5447
+ * @returns Reference to `this` in order to allow method chaining
4761
5448
  */
4762
5449
  setTrackSystemCount(
4763
5450
  /**
@@ -4771,6 +5458,8 @@ declare namespace sap {
4771
5458
  * type of the system rendered
4772
5459
  *
4773
5460
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5461
+ *
5462
+ * @returns Reference to `this` in order to allow method chaining
4774
5463
  */
4775
5464
  setType(
4776
5465
  /**
@@ -4821,6 +5510,8 @@ declare namespace sap {
4821
5510
  * the information contained in `oClassInfo`.
4822
5511
  *
4823
5512
  * `oClassInfo` might contain the same kind of information as described in {@link sap.landvisz.Option.extend}.
5513
+ *
5514
+ * @returns Created class / constructor function
4824
5515
  */
4825
5516
  static extend<T extends Record<string, unknown>>(
4826
5517
  /**
@@ -4839,10 +5530,14 @@ declare namespace sap {
4839
5530
  ): Function;
4840
5531
  /**
4841
5532
  * Returns a metadata object for class sap.landvisz.LandscapeViewer.
5533
+ *
5534
+ * @returns Metadata object describing this class
4842
5535
  */
4843
5536
  static getMetadata(): sap.ui.core.ElementMetadata;
4844
5537
  /**
4845
5538
  * Adds some connectionEntity to the aggregation {@link #getConnectionEntities connectionEntities}.
5539
+ *
5540
+ * @returns Reference to `this` in order to allow method chaining
4846
5541
  */
4847
5542
  addConnectionEntity(
4848
5543
  /**
@@ -4852,6 +5547,8 @@ declare namespace sap {
4852
5547
  ): this;
4853
5548
  /**
4854
5549
  * Adds some connector to the aggregation {@link #getConnectors connectors}.
5550
+ *
5551
+ * @returns Reference to `this` in order to allow method chaining
4855
5552
  */
4856
5553
  addConnector(
4857
5554
  /**
@@ -4861,6 +5558,8 @@ declare namespace sap {
4861
5558
  ): this;
4862
5559
  /**
4863
5560
  * Adds some solutionOption to the aggregation {@link #getSolutionOptions solutionOptions}.
5561
+ *
5562
+ * @returns Reference to `this` in order to allow method chaining
4864
5563
  */
4865
5564
  addSolutionOption(
4866
5565
  /**
@@ -4870,6 +5569,8 @@ declare namespace sap {
4870
5569
  ): this;
4871
5570
  /**
4872
5571
  * Adds some system to the aggregation {@link #getSystems systems}.
5572
+ *
5573
+ * @returns Reference to `this` in order to allow method chaining
4873
5574
  */
4874
5575
  addSystem(
4875
5576
  /**
@@ -4893,6 +5594,8 @@ declare namespace sap {
4893
5594
  * otherwise it will be bound to this `sap.landvisz.LandscapeViewer` itself.
4894
5595
  *
4895
5596
  * closes the view
5597
+ *
5598
+ * @returns Reference to `this` in order to allow method chaining
4896
5599
  */
4897
5600
  attachClose(
4898
5601
  /**
@@ -4916,6 +5619,8 @@ declare namespace sap {
4916
5619
  * otherwise it will be bound to this `sap.landvisz.LandscapeViewer` itself.
4917
5620
  *
4918
5621
  * closes the view
5622
+ *
5623
+ * @returns Reference to `this` in order to allow method chaining
4919
5624
  */
4920
5625
  attachClose(
4921
5626
  /**
@@ -4935,6 +5640,8 @@ declare namespace sap {
4935
5640
  * otherwise it will be bound to this `sap.landvisz.LandscapeViewer` itself.
4936
5641
  *
4937
5642
  * load the solution view either deployment or component
5643
+ *
5644
+ * @returns Reference to `this` in order to allow method chaining
4938
5645
  */
4939
5646
  attachLoadSolutionView(
4940
5647
  /**
@@ -4959,6 +5666,8 @@ declare namespace sap {
4959
5666
  * otherwise it will be bound to this `sap.landvisz.LandscapeViewer` itself.
4960
5667
  *
4961
5668
  * load the solution view either deployment or component
5669
+ *
5670
+ * @returns Reference to `this` in order to allow method chaining
4962
5671
  */
4963
5672
  attachLoadSolutionView(
4964
5673
  /**
@@ -4972,28 +5681,40 @@ declare namespace sap {
4972
5681
  ): this;
4973
5682
  /**
4974
5683
  * Destroys all the connectionEntities in the aggregation {@link #getConnectionEntities connectionEntities}.
5684
+ *
5685
+ * @returns Reference to `this` in order to allow method chaining
4975
5686
  */
4976
5687
  destroyConnectionEntities(): this;
4977
5688
  /**
4978
5689
  * Destroys all the connectors in the aggregation {@link #getConnectors connectors}.
5690
+ *
5691
+ * @returns Reference to `this` in order to allow method chaining
4979
5692
  */
4980
5693
  destroyConnectors(): this;
4981
5694
  /**
4982
5695
  * Destroys the plugContent in the aggregation {@link #getPlugContent plugContent}.
5696
+ *
5697
+ * @returns Reference to `this` in order to allow method chaining
4983
5698
  */
4984
5699
  destroyPlugContent(): this;
4985
5700
  /**
4986
5701
  * Destroys all the solutionOptions in the aggregation {@link #getSolutionOptions solutionOptions}.
5702
+ *
5703
+ * @returns Reference to `this` in order to allow method chaining
4987
5704
  */
4988
5705
  destroySolutionOptions(): this;
4989
5706
  /**
4990
5707
  * Destroys all the systems in the aggregation {@link #getSystems systems}.
5708
+ *
5709
+ * @returns Reference to `this` in order to allow method chaining
4991
5710
  */
4992
5711
  destroySystems(): this;
4993
5712
  /**
4994
5713
  * Detaches event handler `fnFunction` from the {@link #event:close close} event of this `sap.landvisz.LandscapeViewer`.
4995
5714
  *
4996
5715
  * The passed function and listener object must match the ones used for event registration.
5716
+ *
5717
+ * @returns Reference to `this` in order to allow method chaining
4997
5718
  */
4998
5719
  detachClose(
4999
5720
  /**
@@ -5010,6 +5731,8 @@ declare namespace sap {
5010
5731
  * this `sap.landvisz.LandscapeViewer`.
5011
5732
  *
5012
5733
  * The passed function and listener object must match the ones used for event registration.
5734
+ *
5735
+ * @returns Reference to `this` in order to allow method chaining
5013
5736
  */
5014
5737
  detachLoadSolutionView(
5015
5738
  /**
@@ -5023,6 +5746,8 @@ declare namespace sap {
5023
5746
  ): this;
5024
5747
  /**
5025
5748
  * Fires event {@link #event:close close} to attached listeners.
5749
+ *
5750
+ * @returns Reference to `this` in order to allow method chaining
5026
5751
  */
5027
5752
  fireClose(
5028
5753
  /**
@@ -5032,6 +5757,8 @@ declare namespace sap {
5032
5757
  ): this;
5033
5758
  /**
5034
5759
  * Fires event {@link #event:loadSolutionView loadSolutionView} to attached listeners.
5760
+ *
5761
+ * @returns Reference to `this` in order to allow method chaining
5035
5762
  */
5036
5763
  fireLoadSolutionView(
5037
5764
  /**
@@ -5045,18 +5772,24 @@ declare namespace sap {
5045
5772
  * Label of box view
5046
5773
  *
5047
5774
  * Default value is `'Box View'`.
5775
+ *
5776
+ * @returns Value of property `boxDependencyLabel`
5048
5777
  */
5049
5778
  getBoxDependencyLabel(): string;
5050
5779
  /**
5051
5780
  * Gets current value of property {@link #getBoxDependencyLevels boxDependencyLevels}.
5052
5781
  *
5053
5782
  * Levels information in Box dependency view
5783
+ *
5784
+ * @returns Value of property `boxDependencyLevels`
5054
5785
  */
5055
5786
  getBoxDependencyLevels(): string[];
5056
5787
  /**
5057
5788
  * Gets current value of property {@link #getCloseButtonTooltip closeButtonTooltip}.
5058
5789
  *
5059
5790
  * tooltip for close button
5791
+ *
5792
+ * @returns Value of property `closeButtonTooltip`
5060
5793
  */
5061
5794
  getCloseButtonTooltip(): string;
5062
5795
  /**
@@ -5065,12 +5798,16 @@ declare namespace sap {
5065
5798
  * Label for the component view
5066
5799
  *
5067
5800
  * Default value is `'Component View'`.
5801
+ *
5802
+ * @returns Value of property `componentViewLabel`
5068
5803
  */
5069
5804
  getComponentViewLabel(): string;
5070
5805
  /**
5071
5806
  * Gets current value of property {@link #getComponentViewTooltip componentViewTooltip}.
5072
5807
  *
5073
5808
  * tooltip for component view button
5809
+ *
5810
+ * @returns Value of property `componentViewTooltip`
5074
5811
  */
5075
5812
  getComponentViewTooltip(): string;
5076
5813
  /**
@@ -5085,6 +5822,8 @@ declare namespace sap {
5085
5822
  * Type of line to be drawn
5086
5823
  *
5087
5824
  * Default value is `Line`.
5825
+ *
5826
+ * @returns Value of property `connectionLine`
5088
5827
  */
5089
5828
  getConnectionLine(): sap.landvisz.ConnectionLine;
5090
5829
  /**
@@ -5103,6 +5842,8 @@ declare namespace sap {
5103
5842
  * View type of landscape view
5104
5843
  *
5105
5844
  * Default value is `NETWORK_VIEW`.
5845
+ *
5846
+ * @returns Value of property `defaultDependencyView`
5106
5847
  */
5107
5848
  getDefaultDependencyView(): sap.landvisz.DependencyType;
5108
5849
  /**
@@ -5111,12 +5852,16 @@ declare namespace sap {
5111
5852
  * Label for the options
5112
5853
  *
5113
5854
  * Default value is `'Deployment Options :'`.
5855
+ *
5856
+ * @returns Value of property `deploymentOptionsLabel`
5114
5857
  */
5115
5858
  getDeploymentOptionsLabel(): string;
5116
5859
  /**
5117
5860
  * Gets current value of property {@link #getDeploymentOptionsTooltip deploymentOptionsTooltip}.
5118
5861
  *
5119
5862
  * tooltip of label for the options
5863
+ *
5864
+ * @returns Value of property `deploymentOptionsTooltip`
5120
5865
  */
5121
5866
  getDeploymentOptionsTooltip(): string;
5122
5867
  /**
@@ -5125,12 +5870,16 @@ declare namespace sap {
5125
5870
  * Label for deployment view.
5126
5871
  *
5127
5872
  * Default value is `'Deployment View'`.
5873
+ *
5874
+ * @returns Value of property `deploymentViewLabel`
5128
5875
  */
5129
5876
  getDeploymentViewLabel(): string;
5130
5877
  /**
5131
5878
  * Gets current value of property {@link #getDeploymentViewTooltip deploymentViewTooltip}.
5132
5879
  *
5133
5880
  * tooltip for deployment view button
5881
+ *
5882
+ * @returns Value of property `deploymentViewTooltip`
5134
5883
  */
5135
5884
  getDeploymentViewTooltip(): string;
5136
5885
  /**
@@ -5139,18 +5888,24 @@ declare namespace sap {
5139
5888
  * control has to be added in the container or directly in the window.
5140
5889
  *
5141
5890
  * Default value is `true`.
5891
+ *
5892
+ * @returns Value of property `hasParent`
5142
5893
  */
5143
5894
  getHasParent(): boolean;
5144
5895
  /**
5145
5896
  * Gets current value of property {@link #getHeight height}.
5146
5897
  *
5147
5898
  * Height of Viewer container
5899
+ *
5900
+ * @returns Value of property `height`
5148
5901
  */
5149
5902
  getHeight(): int;
5150
5903
  /**
5151
5904
  * Gets current value of property {@link #getNavigationPath navigationPath}.
5152
5905
  *
5153
5906
  * Text displayed in the dependency view
5907
+ *
5908
+ * @returns Value of property `navigationPath`
5154
5909
  */
5155
5910
  getNavigationPath(): string;
5156
5911
  /**
@@ -5159,6 +5914,8 @@ declare namespace sap {
5159
5914
  * Label of the network view
5160
5915
  *
5161
5916
  * Default value is `'Network View'`.
5917
+ *
5918
+ * @returns Value of property `networkDependencyLabel`
5162
5919
  */
5163
5920
  getNetworkDependencyLabel(): string;
5164
5921
  /**
@@ -5173,6 +5930,8 @@ declare namespace sap {
5173
5930
  * Specify the height of plugged content
5174
5931
  *
5175
5932
  * Default value is `0`.
5933
+ *
5934
+ * @returns Value of property `plugContentHeight`
5176
5935
  */
5177
5936
  getPlugContentHeight(): int;
5178
5937
  /**
@@ -5185,6 +5944,8 @@ declare namespace sap {
5185
5944
  * positions for selection view entity
5186
5945
  *
5187
5946
  * Default value is `CENTER`.
5947
+ *
5948
+ * @returns Value of property `selectionViewPosition`
5188
5949
  */
5189
5950
  getSelectionViewPosition(): sap.landvisz.SelectionViewPosition;
5190
5951
  /**
@@ -5193,6 +5954,8 @@ declare namespace sap {
5193
5954
  * close button visibility
5194
5955
  *
5195
5956
  * Default value is `true`.
5957
+ *
5958
+ * @returns Value of property `showClose`
5196
5959
  */
5197
5960
  getShowClose(): boolean;
5198
5961
  /**
@@ -5201,6 +5964,8 @@ declare namespace sap {
5201
5964
  * Navigator for dependency views
5202
5965
  *
5203
5966
  * Default value is `true`.
5967
+ *
5968
+ * @returns Value of property `showDependencyNavigator`
5204
5969
  */
5205
5970
  getShowDependencyNavigator(): boolean;
5206
5971
  /**
@@ -5209,6 +5974,8 @@ declare namespace sap {
5209
5974
  * Deployment type section
5210
5975
  *
5211
5976
  * Default value is `false`.
5977
+ *
5978
+ * @returns Value of property `showDeploymentTypeSection`
5212
5979
  */
5213
5980
  getShowDeploymentTypeSection(): boolean;
5214
5981
  /**
@@ -5221,12 +5988,16 @@ declare namespace sap {
5221
5988
  * Gets current value of property {@link #getSolutionOptionType solutionOptionType}.
5222
5989
  *
5223
5990
  * determines whether the option is rendered on view or entity
5991
+ *
5992
+ * @returns Value of property `solutionOptionType`
5224
5993
  */
5225
5994
  getSolutionOptionType(): sap.landvisz.OptionType;
5226
5995
  /**
5227
5996
  * Gets current value of property {@link #getSolutionType solutionType}.
5228
5997
  *
5229
5998
  * Type of solution rendered
5999
+ *
6000
+ * @returns Value of property `solutionType`
5230
6001
  */
5231
6002
  getSolutionType(): sap.landvisz.SolutionType;
5232
6003
  /**
@@ -5239,12 +6010,16 @@ declare namespace sap {
5239
6010
  * Gets current value of property {@link #getTitle title}.
5240
6011
  *
5241
6012
  * Header of the rendered view
6013
+ *
6014
+ * @returns Value of property `title`
5242
6015
  */
5243
6016
  getTitle(): string;
5244
6017
  /**
5245
6018
  * Gets current value of property {@link #getViewType viewType}.
5246
6019
  *
5247
6020
  * View type of landscape view
6021
+ *
6022
+ * @returns Value of property `viewType`
5248
6023
  */
5249
6024
  getViewType(): sap.landvisz.ViewType;
5250
6025
  /**
@@ -5253,17 +6028,23 @@ declare namespace sap {
5253
6028
  * Dependency View Visibility
5254
6029
  *
5255
6030
  * Default value is `BOTH`.
6031
+ *
6032
+ * @returns Value of property `visibleDependency`
5256
6033
  */
5257
6034
  getVisibleDependency(): sap.landvisz.DependencyVisibility;
5258
6035
  /**
5259
6036
  * Gets current value of property {@link #getWidth width}.
5260
6037
  *
5261
6038
  * width of the Viewer container
6039
+ *
6040
+ * @returns Value of property `width`
5262
6041
  */
5263
6042
  getWidth(): int;
5264
6043
  /**
5265
6044
  * Checks for the provided `sap.landvisz.ConnectionEntity` in the aggregation {@link #getConnectionEntities
5266
6045
  * connectionEntities}. and returns its index if found or -1 otherwise.
6046
+ *
6047
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
5267
6048
  */
5268
6049
  indexOfConnectionEntity(
5269
6050
  /**
@@ -5274,6 +6055,8 @@ declare namespace sap {
5274
6055
  /**
5275
6056
  * Checks for the provided `sap.landvisz.Connector` in the aggregation {@link #getConnectors connectors}.
5276
6057
  * and returns its index if found or -1 otherwise.
6058
+ *
6059
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
5277
6060
  */
5278
6061
  indexOfConnector(
5279
6062
  /**
@@ -5284,6 +6067,8 @@ declare namespace sap {
5284
6067
  /**
5285
6068
  * Checks for the provided `sap.landvisz.Option` in the aggregation {@link #getSolutionOptions solutionOptions}.
5286
6069
  * and returns its index if found or -1 otherwise.
6070
+ *
6071
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
5287
6072
  */
5288
6073
  indexOfSolutionOption(
5289
6074
  /**
@@ -5294,6 +6079,8 @@ declare namespace sap {
5294
6079
  /**
5295
6080
  * Checks for the provided `sap.landvisz.LandscapeEntity` in the aggregation {@link #getSystems systems}.
5296
6081
  * and returns its index if found or -1 otherwise.
6082
+ *
6083
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
5297
6084
  */
5298
6085
  indexOfSystem(
5299
6086
  /**
@@ -5303,6 +6090,8 @@ declare namespace sap {
5303
6090
  ): int;
5304
6091
  /**
5305
6092
  * Inserts a connectionEntity into the aggregation {@link #getConnectionEntities connectionEntities}.
6093
+ *
6094
+ * @returns Reference to `this` in order to allow method chaining
5306
6095
  */
5307
6096
  insertConnectionEntity(
5308
6097
  /**
@@ -5318,6 +6107,8 @@ declare namespace sap {
5318
6107
  ): this;
5319
6108
  /**
5320
6109
  * Inserts a connector into the aggregation {@link #getConnectors connectors}.
6110
+ *
6111
+ * @returns Reference to `this` in order to allow method chaining
5321
6112
  */
5322
6113
  insertConnector(
5323
6114
  /**
@@ -5333,6 +6124,8 @@ declare namespace sap {
5333
6124
  ): this;
5334
6125
  /**
5335
6126
  * Inserts a solutionOption into the aggregation {@link #getSolutionOptions solutionOptions}.
6127
+ *
6128
+ * @returns Reference to `this` in order to allow method chaining
5336
6129
  */
5337
6130
  insertSolutionOption(
5338
6131
  /**
@@ -5348,6 +6141,8 @@ declare namespace sap {
5348
6141
  ): this;
5349
6142
  /**
5350
6143
  * Inserts a system into the aggregation {@link #getSystems systems}.
6144
+ *
6145
+ * @returns Reference to `this` in order to allow method chaining
5351
6146
  */
5352
6147
  insertSystem(
5353
6148
  /**
@@ -5365,28 +6160,38 @@ declare namespace sap {
5365
6160
  * Removes all the controls from the aggregation {@link #getConnectionEntities connectionEntities}.
5366
6161
  *
5367
6162
  * Additionally, it unregisters them from the hosting UIArea.
6163
+ *
6164
+ * @returns An array of the removed elements (might be empty)
5368
6165
  */
5369
6166
  removeAllConnectionEntities(): sap.landvisz.ConnectionEntity[];
5370
6167
  /**
5371
6168
  * Removes all the controls from the aggregation {@link #getConnectors connectors}.
5372
6169
  *
5373
6170
  * Additionally, it unregisters them from the hosting UIArea.
6171
+ *
6172
+ * @returns An array of the removed elements (might be empty)
5374
6173
  */
5375
6174
  removeAllConnectors(): sap.landvisz.Connector[];
5376
6175
  /**
5377
6176
  * Removes all the controls from the aggregation {@link #getSolutionOptions solutionOptions}.
5378
6177
  *
5379
6178
  * Additionally, it unregisters them from the hosting UIArea.
6179
+ *
6180
+ * @returns An array of the removed elements (might be empty)
5380
6181
  */
5381
6182
  removeAllSolutionOptions(): sap.landvisz.Option[];
5382
6183
  /**
5383
6184
  * Removes all the controls from the aggregation {@link #getSystems systems}.
5384
6185
  *
5385
6186
  * Additionally, it unregisters them from the hosting UIArea.
6187
+ *
6188
+ * @returns An array of the removed elements (might be empty)
5386
6189
  */
5387
6190
  removeAllSystems(): sap.landvisz.LandscapeEntity[];
5388
6191
  /**
5389
6192
  * Removes a connectionEntity from the aggregation {@link #getConnectionEntities connectionEntities}.
6193
+ *
6194
+ * @returns The removed connectionEntity or `null`
5390
6195
  */
5391
6196
  removeConnectionEntity(
5392
6197
  /**
@@ -5396,6 +6201,8 @@ declare namespace sap {
5396
6201
  ): sap.landvisz.ConnectionEntity;
5397
6202
  /**
5398
6203
  * Removes a connector from the aggregation {@link #getConnectors connectors}.
6204
+ *
6205
+ * @returns The removed connector or `null`
5399
6206
  */
5400
6207
  removeConnector(
5401
6208
  /**
@@ -5405,6 +6212,8 @@ declare namespace sap {
5405
6212
  ): sap.landvisz.Connector;
5406
6213
  /**
5407
6214
  * Removes a solutionOption from the aggregation {@link #getSolutionOptions solutionOptions}.
6215
+ *
6216
+ * @returns The removed solutionOption or `null`
5408
6217
  */
5409
6218
  removeSolutionOption(
5410
6219
  /**
@@ -5414,6 +6223,8 @@ declare namespace sap {
5414
6223
  ): sap.landvisz.Option;
5415
6224
  /**
5416
6225
  * Removes a system from the aggregation {@link #getSystems systems}.
6226
+ *
6227
+ * @returns The removed system or `null`
5417
6228
  */
5418
6229
  removeSystem(
5419
6230
  /**
@@ -5429,6 +6240,8 @@ declare namespace sap {
5429
6240
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5430
6241
  *
5431
6242
  * Default value is `'Box View'`.
6243
+ *
6244
+ * @returns Reference to `this` in order to allow method chaining
5432
6245
  */
5433
6246
  setBoxDependencyLabel(
5434
6247
  /**
@@ -5442,6 +6255,8 @@ declare namespace sap {
5442
6255
  * Levels information in Box dependency view
5443
6256
  *
5444
6257
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6258
+ *
6259
+ * @returns Reference to `this` in order to allow method chaining
5445
6260
  */
5446
6261
  setBoxDependencyLevels(
5447
6262
  /**
@@ -5455,6 +6270,8 @@ declare namespace sap {
5455
6270
  * tooltip for close button
5456
6271
  *
5457
6272
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6273
+ *
6274
+ * @returns Reference to `this` in order to allow method chaining
5458
6275
  */
5459
6276
  setCloseButtonTooltip(
5460
6277
  /**
@@ -5470,6 +6287,8 @@ declare namespace sap {
5470
6287
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5471
6288
  *
5472
6289
  * Default value is `'Component View'`.
6290
+ *
6291
+ * @returns Reference to `this` in order to allow method chaining
5473
6292
  */
5474
6293
  setComponentViewLabel(
5475
6294
  /**
@@ -5483,6 +6302,8 @@ declare namespace sap {
5483
6302
  * tooltip for component view button
5484
6303
  *
5485
6304
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6305
+ *
6306
+ * @returns Reference to `this` in order to allow method chaining
5486
6307
  */
5487
6308
  setComponentViewTooltip(
5488
6309
  /**
@@ -5498,6 +6319,8 @@ declare namespace sap {
5498
6319
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5499
6320
  *
5500
6321
  * Default value is `Line`.
6322
+ *
6323
+ * @returns Reference to `this` in order to allow method chaining
5501
6324
  */
5502
6325
  setConnectionLine(
5503
6326
  /**
@@ -5513,6 +6336,8 @@ declare namespace sap {
5513
6336
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5514
6337
  *
5515
6338
  * Default value is `NETWORK_VIEW`.
6339
+ *
6340
+ * @returns Reference to `this` in order to allow method chaining
5516
6341
  */
5517
6342
  setDefaultDependencyView(
5518
6343
  /**
@@ -5528,6 +6353,8 @@ declare namespace sap {
5528
6353
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5529
6354
  *
5530
6355
  * Default value is `'Deployment Options :'`.
6356
+ *
6357
+ * @returns Reference to `this` in order to allow method chaining
5531
6358
  */
5532
6359
  setDeploymentOptionsLabel(
5533
6360
  /**
@@ -5541,6 +6368,8 @@ declare namespace sap {
5541
6368
  * tooltip of label for the options
5542
6369
  *
5543
6370
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6371
+ *
6372
+ * @returns Reference to `this` in order to allow method chaining
5544
6373
  */
5545
6374
  setDeploymentOptionsTooltip(
5546
6375
  /**
@@ -5556,6 +6385,8 @@ declare namespace sap {
5556
6385
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5557
6386
  *
5558
6387
  * Default value is `'Deployment View'`.
6388
+ *
6389
+ * @returns Reference to `this` in order to allow method chaining
5559
6390
  */
5560
6391
  setDeploymentViewLabel(
5561
6392
  /**
@@ -5569,6 +6400,8 @@ declare namespace sap {
5569
6400
  * tooltip for deployment view button
5570
6401
  *
5571
6402
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6403
+ *
6404
+ * @returns Reference to `this` in order to allow method chaining
5572
6405
  */
5573
6406
  setDeploymentViewTooltip(
5574
6407
  /**
@@ -5584,6 +6417,8 @@ declare namespace sap {
5584
6417
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5585
6418
  *
5586
6419
  * Default value is `true`.
6420
+ *
6421
+ * @returns Reference to `this` in order to allow method chaining
5587
6422
  */
5588
6423
  setHasParent(
5589
6424
  /**
@@ -5597,6 +6432,8 @@ declare namespace sap {
5597
6432
  * Height of Viewer container
5598
6433
  *
5599
6434
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6435
+ *
6436
+ * @returns Reference to `this` in order to allow method chaining
5600
6437
  */
5601
6438
  setHeight(
5602
6439
  /**
@@ -5610,6 +6447,8 @@ declare namespace sap {
5610
6447
  * Text displayed in the dependency view
5611
6448
  *
5612
6449
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6450
+ *
6451
+ * @returns Reference to `this` in order to allow method chaining
5613
6452
  */
5614
6453
  setNavigationPath(
5615
6454
  /**
@@ -5625,6 +6464,8 @@ declare namespace sap {
5625
6464
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5626
6465
  *
5627
6466
  * Default value is `'Network View'`.
6467
+ *
6468
+ * @returns Reference to `this` in order to allow method chaining
5628
6469
  */
5629
6470
  setNetworkDependencyLabel(
5630
6471
  /**
@@ -5634,6 +6475,8 @@ declare namespace sap {
5634
6475
  ): this;
5635
6476
  /**
5636
6477
  * Sets the aggregated {@link #getPlugContent plugContent}.
6478
+ *
6479
+ * @returns Reference to `this` in order to allow method chaining
5637
6480
  */
5638
6481
  setPlugContent(
5639
6482
  /**
@@ -5649,6 +6492,8 @@ declare namespace sap {
5649
6492
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5650
6493
  *
5651
6494
  * Default value is `0`.
6495
+ *
6496
+ * @returns Reference to `this` in order to allow method chaining
5652
6497
  */
5653
6498
  setPlugContentHeight(
5654
6499
  /**
@@ -5664,6 +6509,8 @@ declare namespace sap {
5664
6509
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5665
6510
  *
5666
6511
  * Default value is `CENTER`.
6512
+ *
6513
+ * @returns Reference to `this` in order to allow method chaining
5667
6514
  */
5668
6515
  setSelectionViewPosition(
5669
6516
  /**
@@ -5679,6 +6526,8 @@ declare namespace sap {
5679
6526
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5680
6527
  *
5681
6528
  * Default value is `true`.
6529
+ *
6530
+ * @returns Reference to `this` in order to allow method chaining
5682
6531
  */
5683
6532
  setShowClose(
5684
6533
  /**
@@ -5694,6 +6543,8 @@ declare namespace sap {
5694
6543
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5695
6544
  *
5696
6545
  * Default value is `true`.
6546
+ *
6547
+ * @returns Reference to `this` in order to allow method chaining
5697
6548
  */
5698
6549
  setShowDependencyNavigator(
5699
6550
  /**
@@ -5709,6 +6560,8 @@ declare namespace sap {
5709
6560
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5710
6561
  *
5711
6562
  * Default value is `false`.
6563
+ *
6564
+ * @returns Reference to `this` in order to allow method chaining
5712
6565
  */
5713
6566
  setShowDeploymentTypeSection(
5714
6567
  /**
@@ -5722,6 +6575,8 @@ declare namespace sap {
5722
6575
  * determines whether the option is rendered on view or entity
5723
6576
  *
5724
6577
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6578
+ *
6579
+ * @returns Reference to `this` in order to allow method chaining
5725
6580
  */
5726
6581
  setSolutionOptionType(
5727
6582
  /**
@@ -5735,6 +6590,8 @@ declare namespace sap {
5735
6590
  * Type of solution rendered
5736
6591
  *
5737
6592
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6593
+ *
6594
+ * @returns Reference to `this` in order to allow method chaining
5738
6595
  */
5739
6596
  setSolutionType(
5740
6597
  /**
@@ -5748,6 +6605,8 @@ declare namespace sap {
5748
6605
  * Header of the rendered view
5749
6606
  *
5750
6607
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6608
+ *
6609
+ * @returns Reference to `this` in order to allow method chaining
5751
6610
  */
5752
6611
  setTitle(
5753
6612
  /**
@@ -5761,6 +6620,8 @@ declare namespace sap {
5761
6620
  * View type of landscape view
5762
6621
  *
5763
6622
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6623
+ *
6624
+ * @returns Reference to `this` in order to allow method chaining
5764
6625
  */
5765
6626
  setViewType(
5766
6627
  /**
@@ -5776,6 +6637,8 @@ declare namespace sap {
5776
6637
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5777
6638
  *
5778
6639
  * Default value is `BOTH`.
6640
+ *
6641
+ * @returns Reference to `this` in order to allow method chaining
5779
6642
  */
5780
6643
  setVisibleDependency(
5781
6644
  /**
@@ -5789,6 +6652,8 @@ declare namespace sap {
5789
6652
  * width of the Viewer container
5790
6653
  *
5791
6654
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6655
+ *
6656
+ * @returns Reference to `this` in order to allow method chaining
5792
6657
  */
5793
6658
  setWidth(
5794
6659
  /**
@@ -5839,6 +6704,8 @@ declare namespace sap {
5839
6704
  * the information contained in `oClassInfo`.
5840
6705
  *
5841
6706
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6707
+ *
6708
+ * @returns Created class / constructor function
5842
6709
  */
5843
6710
  static extend<T extends Record<string, unknown>>(
5844
6711
  /**
@@ -5857,18 +6724,24 @@ declare namespace sap {
5857
6724
  ): Function;
5858
6725
  /**
5859
6726
  * Returns a metadata object for class sap.landvisz.LongTextField.
6727
+ *
6728
+ * @returns Metadata object describing this class
5860
6729
  */
5861
6730
  static getMetadata(): sap.ui.core.ElementMetadata;
5862
6731
  /**
5863
6732
  * Gets current value of property {@link #getRenderingSize renderingSize}.
5864
6733
  *
5865
6734
  * rendering size of the data
6735
+ *
6736
+ * @returns Value of property `renderingSize`
5866
6737
  */
5867
6738
  getRenderingSize(): sap.landvisz.EntityCSSSize;
5868
6739
  /**
5869
6740
  * Gets current value of property {@link #getText text}.
5870
6741
  *
5871
6742
  * Long text for a header
6743
+ *
6744
+ * @returns Value of property `text`
5872
6745
  */
5873
6746
  getText(): string;
5874
6747
  /**
@@ -5877,6 +6750,8 @@ declare namespace sap {
5877
6750
  * rendering size of the data
5878
6751
  *
5879
6752
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6753
+ *
6754
+ * @returns Reference to `this` in order to allow method chaining
5880
6755
  */
5881
6756
  setRenderingSize(
5882
6757
  /**
@@ -5890,6 +6765,8 @@ declare namespace sap {
5890
6765
  * Long text for a header
5891
6766
  *
5892
6767
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6768
+ *
6769
+ * @returns Reference to `this` in order to allow method chaining
5893
6770
  */
5894
6771
  setText(
5895
6772
  /**
@@ -5940,6 +6817,8 @@ declare namespace sap {
5940
6817
  * contained in `oClassInfo`.
5941
6818
  *
5942
6819
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6820
+ *
6821
+ * @returns Created class / constructor function
5943
6822
  */
5944
6823
  static extend<T extends Record<string, unknown>>(
5945
6824
  /**
@@ -5958,10 +6837,14 @@ declare namespace sap {
5958
6837
  ): Function;
5959
6838
  /**
5960
6839
  * Returns a metadata object for class sap.landvisz.Option.
6840
+ *
6841
+ * @returns Metadata object describing this class
5961
6842
  */
5962
6843
  static getMetadata(): sap.ui.core.ElementMetadata;
5963
6844
  /**
5964
6845
  * Adds some optionEntity to the aggregation {@link #getOptionEntities optionEntities}.
6846
+ *
6847
+ * @returns Reference to `this` in order to allow method chaining
5965
6848
  */
5966
6849
  addOptionEntity(
5967
6850
  /**
@@ -5971,12 +6854,16 @@ declare namespace sap {
5971
6854
  ): this;
5972
6855
  /**
5973
6856
  * Destroys all the optionEntities in the aggregation {@link #getOptionEntities optionEntities}.
6857
+ *
6858
+ * @returns Reference to `this` in order to allow method chaining
5974
6859
  */
5975
6860
  destroyOptionEntities(): this;
5976
6861
  /**
5977
6862
  * Gets current value of property {@link #getCurrentEntity currentEntity}.
5978
6863
  *
5979
6864
  * Entity on which options are applicable
6865
+ *
6866
+ * @returns Value of property `currentEntity`
5980
6867
  */
5981
6868
  getCurrentEntity(): string;
5982
6869
  /**
@@ -5989,11 +6876,15 @@ declare namespace sap {
5989
6876
  * Gets current value of property {@link #getType type}.
5990
6877
  *
5991
6878
  * type of main entity which has a replacement
6879
+ *
6880
+ * @returns Value of property `type`
5992
6881
  */
5993
6882
  getType(): string;
5994
6883
  /**
5995
6884
  * Checks for the provided `sap.landvisz.OptionEntity` in the aggregation {@link #getOptionEntities optionEntities}.
5996
6885
  * and returns its index if found or -1 otherwise.
6886
+ *
6887
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
5997
6888
  */
5998
6889
  indexOfOptionEntity(
5999
6890
  /**
@@ -6003,6 +6894,8 @@ declare namespace sap {
6003
6894
  ): int;
6004
6895
  /**
6005
6896
  * Inserts a optionEntity into the aggregation {@link #getOptionEntities optionEntities}.
6897
+ *
6898
+ * @returns Reference to `this` in order to allow method chaining
6006
6899
  */
6007
6900
  insertOptionEntity(
6008
6901
  /**
@@ -6020,10 +6913,14 @@ declare namespace sap {
6020
6913
  * Removes all the controls from the aggregation {@link #getOptionEntities optionEntities}.
6021
6914
  *
6022
6915
  * Additionally, it unregisters them from the hosting UIArea.
6916
+ *
6917
+ * @returns An array of the removed elements (might be empty)
6023
6918
  */
6024
6919
  removeAllOptionEntities(): sap.landvisz.OptionEntity[];
6025
6920
  /**
6026
6921
  * Removes a optionEntity from the aggregation {@link #getOptionEntities optionEntities}.
6922
+ *
6923
+ * @returns The removed optionEntity or `null`
6027
6924
  */
6028
6925
  removeOptionEntity(
6029
6926
  /**
@@ -6037,6 +6934,8 @@ declare namespace sap {
6037
6934
  * Entity on which options are applicable
6038
6935
  *
6039
6936
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6937
+ *
6938
+ * @returns Reference to `this` in order to allow method chaining
6040
6939
  */
6041
6940
  setCurrentEntity(
6042
6941
  /**
@@ -6050,6 +6949,8 @@ declare namespace sap {
6050
6949
  * type of main entity which has a replacement
6051
6950
  *
6052
6951
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6952
+ *
6953
+ * @returns Reference to `this` in order to allow method chaining
6053
6954
  */
6054
6955
  setType(
6055
6956
  /**
@@ -6100,6 +7001,8 @@ declare namespace sap {
6100
7001
  * the information contained in `oClassInfo`.
6101
7002
  *
6102
7003
  * `oClassInfo` might contain the same kind of information as described in {@link sap.landvisz.OptionSource.extend}.
7004
+ *
7005
+ * @returns Created class / constructor function
6103
7006
  */
6104
7007
  static extend<T extends Record<string, unknown>>(
6105
7008
  /**
@@ -6118,10 +7021,14 @@ declare namespace sap {
6118
7021
  ): Function;
6119
7022
  /**
6120
7023
  * Returns a metadata object for class sap.landvisz.OptionEntity.
7024
+ *
7025
+ * @returns Metadata object describing this class
6121
7026
  */
6122
7027
  static getMetadata(): sap.ui.core.ElementMetadata;
6123
7028
  /**
6124
7029
  * Adds some optionSource to the aggregation {@link #getOptionSources optionSources}.
7030
+ *
7031
+ * @returns Reference to `this` in order to allow method chaining
6125
7032
  */
6126
7033
  addOptionSource(
6127
7034
  /**
@@ -6136,6 +7043,8 @@ declare namespace sap {
6136
7043
  * otherwise it will be bound to this `sap.landvisz.OptionEntity` itself.
6137
7044
  *
6138
7045
  * Select event for option entity
7046
+ *
7047
+ * @returns Reference to `this` in order to allow method chaining
6139
7048
  */
6140
7049
  attachSelectOption(
6141
7050
  /**
@@ -6159,6 +7068,8 @@ declare namespace sap {
6159
7068
  * otherwise it will be bound to this `sap.landvisz.OptionEntity` itself.
6160
7069
  *
6161
7070
  * Select event for option entity
7071
+ *
7072
+ * @returns Reference to `this` in order to allow method chaining
6162
7073
  */
6163
7074
  attachSelectOption(
6164
7075
  /**
@@ -6172,12 +7083,16 @@ declare namespace sap {
6172
7083
  ): this;
6173
7084
  /**
6174
7085
  * Destroys all the optionSources in the aggregation {@link #getOptionSources optionSources}.
7086
+ *
7087
+ * @returns Reference to `this` in order to allow method chaining
6175
7088
  */
6176
7089
  destroyOptionSources(): this;
6177
7090
  /**
6178
7091
  * Detaches event handler `fnFunction` from the {@link #event:selectOption selectOption} event of this `sap.landvisz.OptionEntity`.
6179
7092
  *
6180
7093
  * The passed function and listener object must match the ones used for event registration.
7094
+ *
7095
+ * @returns Reference to `this` in order to allow method chaining
6181
7096
  */
6182
7097
  detachSelectOption(
6183
7098
  /**
@@ -6191,6 +7106,8 @@ declare namespace sap {
6191
7106
  ): this;
6192
7107
  /**
6193
7108
  * Fires event {@link #event:selectOption selectOption} to attached listeners.
7109
+ *
7110
+ * @returns Reference to `this` in order to allow method chaining
6194
7111
  */
6195
7112
  fireSelectOption(
6196
7113
  /**
@@ -6204,12 +7121,16 @@ declare namespace sap {
6204
7121
  * enabling/disabling options
6205
7122
  *
6206
7123
  * Default value is `true`.
7124
+ *
7125
+ * @returns Value of property `enable`
6207
7126
  */
6208
7127
  getEnable(): boolean;
6209
7128
  /**
6210
7129
  * Gets current value of property {@link #getLabel label}.
6211
7130
  *
6212
7131
  * label for option entity
7132
+ *
7133
+ * @returns Value of property `label`
6213
7134
  */
6214
7135
  getLabel(): string;
6215
7136
  /**
@@ -6222,6 +7143,8 @@ declare namespace sap {
6222
7143
  * Gets current value of property {@link #getOptionTextTooltip optionTextTooltip}.
6223
7144
  *
6224
7145
  * tooltip for options
7146
+ *
7147
+ * @returns Value of property `optionTextTooltip`
6225
7148
  */
6226
7149
  getOptionTextTooltip(): string;
6227
7150
  /**
@@ -6230,11 +7153,15 @@ declare namespace sap {
6230
7153
  * determines current selected option
6231
7154
  *
6232
7155
  * Default value is `false`.
7156
+ *
7157
+ * @returns Value of property `selected`
6233
7158
  */
6234
7159
  getSelected(): boolean;
6235
7160
  /**
6236
7161
  * Checks for the provided `sap.landvisz.OptionSource` in the aggregation {@link #getOptionSources optionSources}.
6237
7162
  * and returns its index if found or -1 otherwise.
7163
+ *
7164
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6238
7165
  */
6239
7166
  indexOfOptionSource(
6240
7167
  /**
@@ -6244,6 +7171,8 @@ declare namespace sap {
6244
7171
  ): int;
6245
7172
  /**
6246
7173
  * Inserts a optionSource into the aggregation {@link #getOptionSources optionSources}.
7174
+ *
7175
+ * @returns Reference to `this` in order to allow method chaining
6247
7176
  */
6248
7177
  insertOptionSource(
6249
7178
  /**
@@ -6261,10 +7190,14 @@ declare namespace sap {
6261
7190
  * Removes all the controls from the aggregation {@link #getOptionSources optionSources}.
6262
7191
  *
6263
7192
  * Additionally, it unregisters them from the hosting UIArea.
7193
+ *
7194
+ * @returns An array of the removed elements (might be empty)
6264
7195
  */
6265
7196
  removeAllOptionSources(): sap.landvisz.OptionSource[];
6266
7197
  /**
6267
7198
  * Removes a optionSource from the aggregation {@link #getOptionSources optionSources}.
7199
+ *
7200
+ * @returns The removed optionSource or `null`
6268
7201
  */
6269
7202
  removeOptionSource(
6270
7203
  /**
@@ -6280,6 +7213,8 @@ declare namespace sap {
6280
7213
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6281
7214
  *
6282
7215
  * Default value is `true`.
7216
+ *
7217
+ * @returns Reference to `this` in order to allow method chaining
6283
7218
  */
6284
7219
  setEnable(
6285
7220
  /**
@@ -6293,6 +7228,8 @@ declare namespace sap {
6293
7228
  * label for option entity
6294
7229
  *
6295
7230
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7231
+ *
7232
+ * @returns Reference to `this` in order to allow method chaining
6296
7233
  */
6297
7234
  setLabel(
6298
7235
  /**
@@ -6306,6 +7243,8 @@ declare namespace sap {
6306
7243
  * tooltip for options
6307
7244
  *
6308
7245
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7246
+ *
7247
+ * @returns Reference to `this` in order to allow method chaining
6309
7248
  */
6310
7249
  setOptionTextTooltip(
6311
7250
  /**
@@ -6321,6 +7260,8 @@ declare namespace sap {
6321
7260
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6322
7261
  *
6323
7262
  * Default value is `false`.
7263
+ *
7264
+ * @returns Reference to `this` in order to allow method chaining
6324
7265
  */
6325
7266
  setSelected(
6326
7267
  /**
@@ -6371,6 +7312,8 @@ declare namespace sap {
6371
7312
  * the information contained in `oClassInfo`.
6372
7313
  *
6373
7314
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
7315
+ *
7316
+ * @returns Created class / constructor function
6374
7317
  */
6375
7318
  static extend<T extends Record<string, unknown>>(
6376
7319
  /**
@@ -6389,12 +7332,16 @@ declare namespace sap {
6389
7332
  ): Function;
6390
7333
  /**
6391
7334
  * Returns a metadata object for class sap.landvisz.OptionSource.
7335
+ *
7336
+ * @returns Metadata object describing this class
6392
7337
  */
6393
7338
  static getMetadata(): sap.ui.core.ElementMetadata;
6394
7339
  /**
6395
7340
  * Gets current value of property {@link #getSource source}.
6396
7341
  *
6397
7342
  * source for option entity
7343
+ *
7344
+ * @returns Value of property `source`
6398
7345
  */
6399
7346
  getSource(): string;
6400
7347
  /**
@@ -6403,6 +7350,8 @@ declare namespace sap {
6403
7350
  * source for option entity
6404
7351
  *
6405
7352
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7353
+ *
7354
+ * @returns Reference to `this` in order to allow method chaining
6406
7355
  */
6407
7356
  setSource(
6408
7357
  /**