Newer
Older
<?php
namespace DoctrineProxies\__CG__\App\Entity;
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class Instance extends \App\Entity\Instance implements \Doctrine\ORM\Proxy\Proxy
{
/**
* @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
* three parameters, being respectively the proxy object to be initialized, the method that triggered the
* initialization process and an array of ordered parameters that were passed to that method.
*
* @see \Doctrine\Common\Proxy\Proxy::__setInitializer
*/
public $__initializer__;
/**
* @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
*
* @see \Doctrine\Common\Proxy\Proxy::__setCloner
*/
public $__cloner__;
/**
* @var boolean flag indicating if this object was already initialized
*
* @see \Doctrine\Persistence\Proxy::__isInitialized
*/
public $__isInitialized__ = false;
/**
* @var array<string, null> properties to be lazy loaded, indexed by property name
*/
public static $lazyPropertiesNames = array (
);
/**
* @var array<string, mixed> default values of properties to be lazy loaded, with keys being the property names
*
* @see \Doctrine\Common\Proxy\Proxy::__getLazyProperties
*/
public static $lazyPropertiesDefaults = array (
);
public function __construct(?\Closure $initializer = null, ?\Closure $cloner = null)
{
$this->__initializer__ = $initializer;
$this->__cloner__ = $cloner;
}
/**
*
* @return array
*/
public function __sleep()
{
if ($this->__isInitialized__) {
return ['__isInitialized__', 'name', 'label', 'description', 'scientificManager', 'instrument', 'wavelengthDomain', 'display', 'dataPath', 'filesPath', 'public', 'portalLogo', 'designColor', 'designBackgroundColor', 'designLogo', 'designFavicon', 'navbarBackgroundColor', 'navbarBorderBottomColor', 'navbarColorHref', 'navbarFontFamily', 'navbarSignInBtnColor', 'navbarUserBtnColor', 'footerBackgroundColor', 'footerBorderTopColor', 'footerTextColor', 'footerLogos', 'familyBorderColor', 'familyHeaderBackgroundColor', 'familyTitleColor', 'familyTitleBold', 'familyBackgroundColor', 'familyColor', 'progressBarTitle', 'progressBarTitleColor', 'progressBarSubtitle', 'progressBarSubtitleColor', 'progressBarStepDatasetTitle', 'progressBarStepCriteriaTitle', 'progressBarStepOutputTitle', 'progressBarStepResultTitle', 'progressBarColor', 'progressBarActiveColor', 'progressBarCircleColor', 'progressBarCircleIconColor', 'progressBarCircleIconActiveColor', 'progressBarTextColor', 'resultHeaderBackgroundColor', 'resultHeaderTextColor', 'resultHeaderBtnColor', 'resultHeaderBtnHoverColor', 'resultHeaderBtnTextColor', 'resultDatatableBordered', 'resultDatatableBorderColor', 'resultDatatableHeaderBackgroundColor', 'resultDatatableHeaderTextColor', 'resultDatatableRowsBackgroundColor', 'resultDatatableRowsTextColor', 'resultDatatableSortedColor', 'resultDatatableSortedActiveColor', 'resultDatatableLinkColor', 'resultDatatableLinkHoverColor', 'resultDatatableRowsSelectedColor', 'sampEnabled', 'backToPortal', 'userMenuEnabled', 'searchByCriteriaAllowed', 'searchByCriteriaLabel', 'searchMultipleAllowed', 'searchMultipleLabel', 'searchMultipleAllDatasetsSelected', 'documentationAllowed', 'documentationLabel', 'datasetFamilies'];
return ['__isInitialized__', 'name', 'label', 'description', 'scientificManager', 'instrument', 'wavelengthDomain', 'display', 'dataPath', 'filesPath', 'public', 'portalLogo', 'designColor', 'designBackgroundColor', 'designLogo', 'designFavicon', 'navbarBackgroundColor', 'navbarBorderBottomColor', 'navbarColorHref', 'navbarFontFamily', 'navbarSignInBtnColor', 'navbarUserBtnColor', 'footerBackgroundColor', 'footerBorderTopColor', 'footerTextColor', 'footerLogos', 'familyBorderColor', 'familyHeaderBackgroundColor', 'familyTitleColor', 'familyTitleBold', 'familyBackgroundColor', 'familyColor', 'progressBarTitle', 'progressBarTitleColor', 'progressBarSubtitle', 'progressBarSubtitleColor', 'progressBarStepDatasetTitle', 'progressBarStepCriteriaTitle', 'progressBarStepOutputTitle', 'progressBarStepResultTitle', 'progressBarColor', 'progressBarActiveColor', 'progressBarCircleColor', 'progressBarCircleIconColor', 'progressBarCircleIconActiveColor', 'progressBarTextColor', 'resultHeaderBackgroundColor', 'resultHeaderTextColor', 'resultHeaderBtnColor', 'resultHeaderBtnHoverColor', 'resultHeaderBtnTextColor', 'resultDatatableBordered', 'resultDatatableBorderColor', 'resultDatatableHeaderBackgroundColor', 'resultDatatableHeaderTextColor', 'resultDatatableRowsBackgroundColor', 'resultDatatableRowsTextColor', 'resultDatatableSortedColor', 'resultDatatableSortedActiveColor', 'resultDatatableLinkColor', 'resultDatatableLinkHoverColor', 'resultDatatableRowsSelectedColor', 'sampEnabled', 'backToPortal', 'userMenuEnabled', 'searchByCriteriaAllowed', 'searchByCriteriaLabel', 'searchMultipleAllowed', 'searchMultipleLabel', 'searchMultipleAllDatasetsSelected', 'documentationAllowed', 'documentationLabel', 'datasetFamilies'];
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (Instance $proxy) {
$proxy->__setInitializer(null);
$proxy->__setCloner(null);
$existingProperties = get_object_vars($proxy);
foreach ($proxy::$lazyPropertiesDefaults as $property => $defaultValue) {
if ( ! array_key_exists($property, $existingProperties)) {
$proxy->$property = $defaultValue;
}
}
};
}
}
/**
*
*/
public function __clone()
{
$this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []);
}
/**
* Forces initialization of the proxy
*/
public function __load()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __isInitialized()
{
return $this->__isInitialized__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setInitialized($initialized)
{
$this->__isInitialized__ = $initialized;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setInitializer(\Closure $initializer = null)
{
$this->__initializer__ = $initializer;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __getInitializer()
{
return $this->__initializer__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setCloner(\Closure $cloner = null)
{
$this->__cloner__ = $cloner;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific cloning logic
*/
public function __getCloner()
{
return $this->__cloner__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
* @deprecated no longer in use - generated code now relies on internal components rather than generated public API
* @static
*/
public function __getLazyProperties()
{
return self::$lazyPropertiesDefaults;
}
/**
* {@inheritDoc}
*/
public function getName()
{
if ($this->__isInitialized__ === false) {
return parent::getName();
}
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@inheritDoc}
*/
public function getLabel()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLabel', []);
return parent::getLabel();
}
/**
* {@inheritDoc}
*/
public function setLabel(string $label)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLabel', [$label]);
return parent::setLabel($label);
}
/**
* {@inheritDoc}
*/
public function getDescription()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDescription', []);
return parent::getDescription();
}
/**
* {@inheritDoc}
*/
public function setDescription($description)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDescription', [$description]);
return parent::setDescription($description);
}
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
/**
* {@inheritDoc}
*/
public function getScientificManager()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getScientificManager', []);
return parent::getScientificManager();
}
/**
* {@inheritDoc}
*/
public function setScientificManager($scientificManager)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setScientificManager', [$scientificManager]);
return parent::setScientificManager($scientificManager);
}
/**
* {@inheritDoc}
*/
public function getInstrument()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getInstrument', []);
return parent::getInstrument();
}
/**
* {@inheritDoc}
*/
public function setInstrument($instrument)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setInstrument', [$instrument]);
return parent::setInstrument($instrument);
}
/**
* {@inheritDoc}
*/
public function getWavelengthDomain()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getWavelengthDomain', []);
return parent::getWavelengthDomain();
}
/**
* {@inheritDoc}
*/
public function setWavelengthDomain($wavelengthDomain)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setWavelengthDomain', [$wavelengthDomain]);
return parent::setWavelengthDomain($wavelengthDomain);
}
/**
* {@inheritDoc}
*/
public function getDisplay()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDisplay', []);
return parent::getDisplay();
}
/**
* {@inheritDoc}
*/
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDisplay', [$display]);
/**
* {@inheritDoc}
*/
public function getDataPath()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDataPath', []);
return parent::getDataPath();
}
/**
* {@inheritDoc}
*/
public function setDataPath($dataPath)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDataPath', [$dataPath]);
return parent::setDataPath($dataPath);
}
/**
* {@inheritDoc}
*/
public function getFilesPath()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFilesPath', []);
return parent::getFilesPath();
}
/**
* {@inheritDoc}
*/
public function setFilesPath($filesPath)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFilesPath', [$filesPath]);
return parent::setFilesPath($filesPath);
}
/**
* {@inheritDoc}
*/
public function getPublic()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPublic', []);
return parent::getPublic();
}
/**
* {@inheritDoc}
*/
public function setPublic($public)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPublic', [$public]);
return parent::setPublic($public);
}
/**
* {@inheritDoc}
*/
public function getPortalLogo()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPortalLogo', []);
return parent::getPortalLogo();
}
/**
* {@inheritDoc}
*/
public function setPortalLogo($portalLogo)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPortalLogo', [$portalLogo]);
return parent::setPortalLogo($portalLogo);
}
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
public function getDesignColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDesignColor', []);
return parent::getDesignColor();
}
/**
* {@inheritDoc}
*/
public function setDesignColor($designColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDesignColor', [$designColor]);
return parent::setDesignColor($designColor);
}
/**
* {@inheritDoc}
*/
public function getDesignBackgroundColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDesignBackgroundColor', []);
return parent::getDesignBackgroundColor();
}
/**
* {@inheritDoc}
*/
public function setDesignBackgroundColor($designBackgroundColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDesignBackgroundColor', [$designBackgroundColor]);
return parent::setDesignBackgroundColor($designBackgroundColor);
}
/**
* {@inheritDoc}
*/
public function getDesignLogo()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDesignLogo', []);
return parent::getDesignLogo();
}
/**
* {@inheritDoc}
*/
public function setDesignLogo($designLogo)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDesignLogo', [$designLogo]);
return parent::setDesignLogo($designLogo);
}
/**
* {@inheritDoc}
*/
public function getDesignFavicon()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDesignFavicon', []);
return parent::getDesignFavicon();
}
/**
* {@inheritDoc}
*/
public function setDesignFavicon($designFavicon)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDesignFavicon', [$designFavicon]);
return parent::setDesignFavicon($designFavicon);
}
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
/**
* {@inheritDoc}
*/
public function getNavbarBackgroundColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNavbarBackgroundColor', []);
return parent::getNavbarBackgroundColor();
}
/**
* {@inheritDoc}
*/
public function setNavbarBackgroundColor($navbarBackgroundColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNavbarBackgroundColor', [$navbarBackgroundColor]);
return parent::setNavbarBackgroundColor($navbarBackgroundColor);
}
/**
* {@inheritDoc}
*/
public function getNavbarBorderBottomColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNavbarBorderBottomColor', []);
return parent::getNavbarBorderBottomColor();
}
/**
* {@inheritDoc}
*/
public function setNavbarBorderBottomColor($navbarBorderBottomColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNavbarBorderBottomColor', [$navbarBorderBottomColor]);
return parent::setNavbarBorderBottomColor($navbarBorderBottomColor);
}
/**
* {@inheritDoc}
*/
public function getNavbarColorHref()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNavbarColorHref', []);
return parent::getNavbarColorHref();
}
/**
* {@inheritDoc}
*/
public function setNavbarColorHref($navbarColorHref)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNavbarColorHref', [$navbarColorHref]);
return parent::setNavbarColorHref($navbarColorHref);
}
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
/**
* {@inheritDoc}
*/
public function getNavbarFontFamily()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNavbarFontFamily', []);
return parent::getNavbarFontFamily();
}
/**
* {@inheritDoc}
*/
public function setNavbarFontFamily($navbarFontFamily)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNavbarFontFamily', [$navbarFontFamily]);
return parent::setNavbarFontFamily($navbarFontFamily);
}
/**
* {@inheritDoc}
*/
public function getNavbarSignInBtnColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNavbarSignInBtnColor', []);
return parent::getNavbarSignInBtnColor();
}
/**
* {@inheritDoc}
*/
public function setNavbarSignInBtnColor($navbarSignInBtnColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNavbarSignInBtnColor', [$navbarSignInBtnColor]);
return parent::setNavbarSignInBtnColor($navbarSignInBtnColor);
}
/**
* {@inheritDoc}
*/
public function getNavbarUserBtnColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNavbarUserBtnColor', []);
return parent::getNavbarUserBtnColor();
}
/**
* {@inheritDoc}
*/
public function setNavbarUserBtnColor($navbarUserBtnColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNavbarUserBtnColor', [$navbarUserBtnColor]);
return parent::setNavbarUserBtnColor($navbarUserBtnColor);
}
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
/**
* {@inheritDoc}
*/
public function getFooterBackgroundColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFooterBackgroundColor', []);
return parent::getFooterBackgroundColor();
}
/**
* {@inheritDoc}
*/
public function setFooterBackgroundColor($footerBackgroundColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFooterBackgroundColor', [$footerBackgroundColor]);
return parent::setFooterBackgroundColor($footerBackgroundColor);
}
/**
* {@inheritDoc}
*/
public function getFooterBorderTopColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFooterBorderTopColor', []);
return parent::getFooterBorderTopColor();
}
/**
* {@inheritDoc}
*/
public function setFooterBorderTopColor($footerBorderTopColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFooterBorderTopColor', [$footerBorderTopColor]);
return parent::setFooterBorderTopColor($footerBorderTopColor);
}
/**
* {@inheritDoc}
*/
public function getFooterTextColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFooterTextColor', []);
return parent::getFooterTextColor();
}
/**
* {@inheritDoc}
*/
public function setFooterTextColor($footerTextColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFooterTextColor', [$footerTextColor]);
return parent::setFooterTextColor($footerTextColor);
}
/**
* {@inheritDoc}
*/
public function getFooterLogos()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFooterLogos', []);
return parent::getFooterLogos();
}
/**
* {@inheritDoc}
*/
public function setFooterLogos($footerLogos)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFooterLogos', [$footerLogos]);
return parent::setFooterLogos($footerLogos);
}
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
/**
* {@inheritDoc}
*/
public function getFamilyBorderColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFamilyBorderColor', []);
return parent::getFamilyBorderColor();
}
/**
* {@inheritDoc}
*/
public function setFamilyBorderColor($familyBorderColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFamilyBorderColor', [$familyBorderColor]);
return parent::setFamilyBorderColor($familyBorderColor);
}
/**
* {@inheritDoc}
*/
public function getFamilyHeaderBackgroundColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFamilyHeaderBackgroundColor', []);
return parent::getFamilyHeaderBackgroundColor();
}
/**
* {@inheritDoc}
*/
public function setFamilyHeaderBackgroundColor($familyHeaderBackgroundColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFamilyHeaderBackgroundColor', [$familyHeaderBackgroundColor]);
return parent::setFamilyHeaderBackgroundColor($familyHeaderBackgroundColor);
}
/**
* {@inheritDoc}
*/
public function getFamilyTitleColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFamilyTitleColor', []);
return parent::getFamilyTitleColor();
}
/**
* {@inheritDoc}
*/
public function setFamilyTitleColor($familyTitleColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFamilyTitleColor', [$familyTitleColor]);
return parent::setFamilyTitleColor($familyTitleColor);
}
/**
* {@inheritDoc}
*/
public function getFamilyTitleBold()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFamilyTitleBold', []);
return parent::getFamilyTitleBold();
}
/**
* {@inheritDoc}
*/
public function setFamilyTitleBold($familyTitleBold)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFamilyTitleBold', [$familyTitleBold]);
return parent::setFamilyTitleBold($familyTitleBold);
}
/**
* {@inheritDoc}
*/
public function getFamilyBackgroundColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFamilyBackgroundColor', []);
return parent::getFamilyBackgroundColor();
}
/**
* {@inheritDoc}
*/
public function setFamilyBackgroundColor($familyBackgroundColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFamilyBackgroundColor', [$familyBackgroundColor]);
return parent::setFamilyBackgroundColor($familyBackgroundColor);
}
/**
* {@inheritDoc}
*/
public function getFamilyColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFamilyColor', []);
return parent::getFamilyColor();
}
/**
* {@inheritDoc}
*/
public function setFamilyColor($familyColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFamilyColor', [$familyColor]);
return parent::setFamilyColor($familyColor);
}
/**
* {@inheritDoc}
*/
public function getProgressBarTitle()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getProgressBarTitle', []);
return parent::getProgressBarTitle();
}
/**
* {@inheritDoc}
*/
public function setProgressBarTitle($progressBarTitle)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setProgressBarTitle', [$progressBarTitle]);
return parent::setProgressBarTitle($progressBarTitle);
}
/**
* {@inheritDoc}
*/
public function getProgressBarTitleColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getProgressBarTitleColor', []);
return parent::getProgressBarTitleColor();
}
/**
* {@inheritDoc}
*/
public function setProgressBarTitleColor($progressBarTitleColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setProgressBarTitleColor', [$progressBarTitleColor]);
return parent::setProgressBarTitleColor($progressBarTitleColor);
}
/**
* {@inheritDoc}
*/
public function getProgressBarSubtitle()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getProgressBarSubtitle', []);
return parent::getProgressBarSubtitle();
}
/**
* {@inheritDoc}
*/
public function setProgressBarSubtitle($progressBarSubtitle)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setProgressBarSubtitle', [$progressBarSubtitle]);
return parent::setProgressBarSubtitle($progressBarSubtitle);
}
/**
* {@inheritDoc}
*/
public function getProgressBarSubtitleColor()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getProgressBarSubtitleColor', []);
return parent::getProgressBarSubtitleColor();
}
/**
* {@inheritDoc}
*/
public function setProgressBarSubtitleColor($progressBarSubtitleColor)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setProgressBarSubtitleColor', [$progressBarSubtitleColor]);
return parent::setProgressBarSubtitleColor($progressBarSubtitleColor);
}
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* {@inheritDoc}
*/
public function getProgressBarStepDatasetTitle()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getProgressBarStepDatasetTitle', []);
return parent::getProgressBarStepDatasetTitle();
}
/**
* {@inheritDoc}
*/
public function setProgressBarStepDatasetTitle($progressBarStepDatasetTitle)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setProgressBarStepDatasetTitle', [$progressBarStepDatasetTitle]);
return parent::setProgressBarStepDatasetTitle($progressBarStepDatasetTitle);
}
/**
* {@inheritDoc}
*/
public function getProgressBarStepCriteriaTitle()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getProgressBarStepCriteriaTitle', []);
return parent::getProgressBarStepCriteriaTitle();
}
/**
* {@inheritDoc}
*/
public function setProgressBarStepCriteriaTitle($progressBarStepCriteriaTitle)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setProgressBarStepCriteriaTitle', [$progressBarStepCriteriaTitle]);
return parent::setProgressBarStepCriteriaTitle($progressBarStepCriteriaTitle);
}
/**
* {@inheritDoc}
*/
public function getProgressBarStepOutputTitle()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getProgressBarStepOutputTitle', []);
return parent::getProgressBarStepOutputTitle();
}
/**
* {@inheritDoc}
*/