-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathEnumerationDefinition.cs
More file actions
835 lines (742 loc) · 60.3 KB
/
EnumerationDefinition.cs
File metadata and controls
835 lines (742 loc) · 60.3 KB
1
2
3
4
5
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
70
71
72
73
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
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
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
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
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
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
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
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
// -------------------------------------------------------------------------------------------------
// <copyright file="EnumerationDefinition.cs" company="Starion Group S.A.">
//
// Copyright (C) 2022-2026 Starion Group S.A.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// </copyright>
// ------------------------------------------------------------------------------------------------
// ------------------------------------------------------------------------------------------------
// --------THIS IS AN AUTOMATICALLY GENERATED FILE. ANY MANUAL CHANGES WILL BE OVERWRITTEN!--------
// ------------------------------------------------------------------------------------------------
namespace SysML2.NET.Core.POCO.Systems.Enumerations
{
using System;
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.Linq;
using SysML2.NET.Core.POCO.Core.Classifiers;
using SysML2.NET.Core.POCO.Core.Features;
using SysML2.NET.Core.POCO.Core.Types;
using SysML2.NET.Core.POCO.Root.Annotations;
using SysML2.NET.Core.POCO.Root.Elements;
using SysML2.NET.Core.POCO.Root.Namespaces;
using SysML2.NET.Core.POCO.Systems.Actions;
using SysML2.NET.Core.POCO.Systems.Allocations;
using SysML2.NET.Core.POCO.Systems.AnalysisCases;
using SysML2.NET.Core.POCO.Systems.Attributes;
using SysML2.NET.Core.POCO.Systems.Calculations;
using SysML2.NET.Core.POCO.Systems.Cases;
using SysML2.NET.Core.POCO.Systems.Connections;
using SysML2.NET.Core.POCO.Systems.Constraints;
using SysML2.NET.Core.POCO.Systems.DefinitionAndUsage;
using SysML2.NET.Core.POCO.Systems.Flows;
using SysML2.NET.Core.POCO.Systems.Interfaces;
using SysML2.NET.Core.POCO.Systems.Items;
using SysML2.NET.Core.POCO.Systems.Metadata;
using SysML2.NET.Core.POCO.Systems.Occurrences;
using SysML2.NET.Core.POCO.Systems.Parts;
using SysML2.NET.Core.POCO.Systems.Ports;
using SysML2.NET.Core.POCO.Systems.Requirements;
using SysML2.NET.Core.POCO.Systems.States;
using SysML2.NET.Core.POCO.Systems.UseCases;
using SysML2.NET.Core.POCO.Systems.VerificationCases;
using SysML2.NET.Core.POCO.Systems.Views;
using SysML2.NET.Collections;
using SysML2.NET.Decorators;
/// <summary>
/// An EnumerationDefinition is an AttributeDefinition all of whose instances are given by an explicit
/// list of enumeratedValues. This is realized by requiring that the EnumerationDefinition have
/// isVariation = true, with the enumeratedValues being its variants.
/// </summary>
[Class(xmiId: "_19_0_4_12e503d9_1606946467364_179493_153", isAbstract: false, isFinalSpecialization: false, isActive: false)]
[GeneratedCode("SysML2.NET", "latest")]
public partial class EnumerationDefinition : IEnumerationDefinition, IContainedElement
{
/// <summary>
/// Initialize a new instance of <see cref="EnumerationDefinition" />
/// </summary>
public EnumerationDefinition()
{
((IContainedElement)this).OwnedRelationship = new ContainerList<IElement, IRelationship>(this,
(relationship, element) => ((IContainedRelationship)relationship).OwningRelatedElement = element,
relationship => relationship.OwningRelatedElement);
}
/// <summary>
/// Gets or sets the unique identifier
/// </summary>
[Property(xmiId: "sysml2.net", aggregation: AggregationKind.None, lowerValue: 1, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: false, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IData.Id")]
public Guid Id { get; set; }
/// <summary>
/// Various alternative identifiers for this Element. Generally, these will be set by tools.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1594312532679_496267_4310", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: false, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IElement.AliasIds")]
public List<string> AliasIds { get; set; } = [];
/// <summary>
/// The declared name of this Element.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674987_737648_43307", aggregation: AggregationKind.None, lowerValue: 0, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: false, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IElement.DeclaredName")]
public string DeclaredName { get; set; }
/// <summary>
/// An optional alternative name for the Element that is intended to be shorter or in some way more
/// succinct than its primary name. It may act as a modeler-specified identifier for the Element, though
/// it is then the responsibility of the modeler to maintain the uniqueness of this identifier within a
/// model or relative to some other context.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1594160442439_915308_4153", aggregation: AggregationKind.None, lowerValue: 0, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: false, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IElement.DeclaredShortName")]
public string DeclaredShortName { get; set; }
/// <summary>
/// The interpretations of a Type with differencingTypes are asserted to be those of the first of those
/// Types, but not including those of the remaining Types. For example, a Classifier might be the
/// difference of a Classifier for people and another for people of a particular nationality, leaving
/// people who are not of that nationality. Similarly, a feature of people might be the difference
/// between a feature for their children and a Classifier for people of a particular sex, identifying
/// their children not of that sex (because the interpretations of the children Feature that identify
/// those of that sex are also interpretations of the Classifier for that sex).
/// </summary>
[Property(xmiId: "_19_0_4_b9102da_1661975883472_645501_1372", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IType.DifferencingType")]
public List<IType> differencingType => this.ComputeDifferencingType();
/// <summary>
/// The features of this Type that have a non-null direction.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1623952188842_882068_37169", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674959_326391_43166")]
[Implements(implementation: "IType.DirectedFeature")]
public List<IFeature> directedFeature => this.ComputeDirectedFeature();
/// <summary>
/// The usages of this Definition that are directedFeatures.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1565495064714_974634_26150", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_4_12e503d9_1623952188842_882068_37169")]
[Implements(implementation: "IDefinition.DirectedUsage")]
public List<IUsage> directedUsage => this.ComputeDirectedUsage();
/// <summary>
/// The Documentation owned by this Element.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1594150061166_345630_1621", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1594145755059_76214_87")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1543092869879_112608_17278")]
[Implements(implementation: "IElement.Documentation")]
public List<IDocumentation> documentation => this.ComputeDocumentation();
/// <summary>
/// The globally unique identifier for this Element. This is intended to be set by tooling, and it must
/// not change during the lifetime of the Element.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674986_844338_43305", aggregation: AggregationKind.None, lowerValue: 1, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: false, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IElement.ElementId")]
public string ElementId { get; set; }
/// <summary>
/// All features of this Type with isEnd = true.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1562476168385_824569_22106", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674959_326391_43166")]
[Implements(implementation: "IType.EndFeature")]
public List<IFeature> endFeature => this.ComputeEndFeature();
/// <summary>
/// EnumerationUsages of this EnumerationDefinitionthat have distinct, fixed values. Each
/// enumeratedValue specifies one of the allowed instances of the EnumerationDefinition.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1606946634788_959145_265", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[RedefinedProperty(propertyName: "_19_0_2_12e503d9_1590979457191_746167_951")]
[Implements(implementation: "IEnumerationDefinition.EnumeratedValue")]
public List<IEnumerationUsage> enumeratedValue => this.ComputeEnumeratedValue();
/// <summary>
/// The ownedMemberFeatures of the featureMemberships of this Type.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674959_326391_43166", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674979_644335_43267")]
[Implements(implementation: "IType.Feature")]
public List<IFeature> feature => this.ComputeFeature();
/// <summary>
/// The FeatureMemberships for features of this Type, which include all ownedFeatureMemberships and
/// those inheritedMemberships that are FeatureMemberships (but does not include any
/// importedMemberships).
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1651076866512_962346_485", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IType.FeatureMembership")]
public List<IFeatureMembership> featureMembership => this.ComputeFeatureMembership();
/// <summary>
/// The Memberships in this Namespace that result from the ownedImports of this Namespace.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674979_207869_43270", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674962_198288_43183")]
[Implements(implementation: "INamespace.ImportedMembership")]
public List<IMembership> importedMembership => this.ComputeImportedMembership();
/// <summary>
/// All the memberFeatures of the inheritedMemberships of this Type that are FeatureMemberships.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1575499020770_15576_2334", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674959_326391_43166")]
[Implements(implementation: "IType.InheritedFeature")]
public List<IFeature> inheritedFeature => this.ComputeInheritedFeature();
/// <summary>
/// All Memberships inherited by this Type via Specialization or Conjugation. These are included in the
/// derived union for the memberships of the Type.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1551972927538_787976_19004", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674962_198288_43183")]
[Implements(implementation: "IType.InheritedMembership")]
public List<IMembership> inheritedMembership => this.ComputeInheritedMembership();
/// <summary>
/// All features related to this Type by FeatureMemberships that have direction in or inout.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674960_37384_43169", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_4_12e503d9_1623952188842_882068_37169")]
[Implements(implementation: "IType.Input")]
public List<IFeature> input => this.ComputeInput();
/// <summary>
/// The interpretations of a Type with intersectingTypes are asserted to be those in common among the
/// intersectingTypes, which are the Types derived from the intersectingType of the ownedIntersectings
/// of this Type. For example, a Classifier might be an intersection of Classifiers for people of a
/// particular sex and of a particular nationality. Similarly, a feature for people's children of a
/// particular sex might be the intersection of a Feature for their children and a Classifier for people
/// of that sex (because the interpretations of the children Feature that identify those of that sex are
/// also interpretations of the Classifier for that sex).
/// </summary>
[Property(xmiId: "_19_0_4_b9102da_1661973922199_584242_1045", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IType.IntersectingType")]
public List<IType> intersectingType => this.ComputeIntersectingType();
/// <summary>
/// Indicates whether instances of this Type must also be instances of at least one of its specialized
/// Types.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674959_741353_43165", aggregation: AggregationKind.None, lowerValue: 1, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: false, isDerivedUnion: false, isUnique: true, defaultValue: "false")]
[Implements(implementation: "IType.IsAbstract")]
public bool IsAbstract { get; set; }
/// <summary>
/// Indicates whether this Type has an ownedConjugator.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1575485930816_796088_1933", aggregation: AggregationKind.None, lowerValue: 1, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IType.IsConjugated")]
public bool isConjugated => this.ComputeIsConjugated();
/// <summary>
/// Whether all necessary implied Relationships have been included in the ownedRelationships of this
/// Element. This property may be true, even if there are not actually any ownedRelationships with
/// isImplied = true, meaning that no such Relationships are actually implied for this Element. However,
/// if it is false, then ownedRelationships may not contain any implied Relationships. That is, either
/// all required implied Relationships must be included, or none of them.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1662070949317_79713_3658", aggregation: AggregationKind.None, lowerValue: 1, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: false, isDerivedUnion: false, isUnique: true, defaultValue: "false")]
[Implements(implementation: "IElement.IsImpliedIncluded")]
public bool IsImpliedIncluded { get; set; }
/// <summary>
/// Whether this Element is contained in the ownership tree of a library model.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1665443500960_5561_723", aggregation: AggregationKind.None, lowerValue: 1, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IElement.IsLibraryElement")]
public bool isLibraryElement => this.ComputeIsLibraryElement();
/// <summary>
/// Whether all things that meet the classification conditions of this Type must be classified by the
/// Type. (A Type gives conditions that must be met by whatever it
/// classifies, but when isSufficient is false, things may meet those conditions but still not be
/// classified by the Type. For example, a Type Car that is not sufficient could require everything it
/// classifies to have four wheels, but not all four wheeled things would classify as cars. However, if
/// the Type Car were sufficient, it would classify all four-wheeled things.)
/// </summary>
[Property(xmiId: "_18_5_3_b9102da_1564072709069_937523_30797", aggregation: AggregationKind.None, lowerValue: 1, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: false, isDerivedUnion: false, isUnique: true, defaultValue: "false")]
[Implements(implementation: "IType.IsSufficient")]
public bool IsSufficient { get; set; }
/// <summary>
/// An EnumerationDefinition is considered semantically to be a variation whose allowed variants are its
/// enumerationValues.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1606946783667_895456_287", aggregation: AggregationKind.None, lowerValue: 1, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: false, isDerivedUnion: false, isUnique: true, defaultValue: "true")]
[RedefinedProperty(propertyName: "_19_0_2_12e503d9_1590978283180_265362_419")]
[Implements(implementation: "IEnumerationDefinition.IsVariation")]
public bool IsVariation { get; set; } = true;
/// <summary>
/// Whether this Definition is for a variation point or not. If true, then all the memberships of the
/// Definition must be VariantMemberships.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1590978283180_265362_419", aggregation: AggregationKind.None, lowerValue: 1, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: false, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[RedefinedByProperty("IEnumerationDefinition.IsVariation")]
[Implements(implementation: "IDefinition.IsVariation")]
bool Systems.DefinitionAndUsage.IDefinition.IsVariation
{
get => this.IsVariation;
set
{
this.IsVariation = value;
}
}
/// <summary>
/// The set of all member Elements of this Namespace, which are the memberElements of all memberships of
/// the Namespace.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674979_644335_43267", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "INamespace.Member")]
public List<IElement> member => this.ComputeMember();
/// <summary>
/// All Memberships in this Namespace, including (at least) the union of ownedMemberships and
/// importedMemberships.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674962_198288_43183", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: true, isUnique: true, defaultValue: null)]
[Implements(implementation: "INamespace.Membership")]
public List<IMembership> membership => this.ComputeMembership();
/// <summary>
/// An ownedMember of this Type that is a Multiplicity, which constraints the cardinality of the Type.
/// If there is no such ownedMember, then the cardinality of this Type is constrained by all the
/// Multiplicity constraints applicable to any direct supertypes.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1573095852093_324833_5396", aggregation: AggregationKind.None, lowerValue: 0, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674979_259543_43268")]
[Implements(implementation: "IType.Multiplicity")]
public IMultiplicity multiplicity => this.ComputeMultiplicity();
/// <summary>
/// The name to be used for this Element during name resolution within its owningNamespace. This is
/// derived using the effectiveName() operation. By default, it is the same as the declaredName, but
/// this is overridden for certain kinds of Elements to compute a name even when the declaredName is
/// null.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1617485009541_709355_27528", aggregation: AggregationKind.None, lowerValue: 0, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IElement.Name")]
public string name => this.ComputeName();
/// <summary>
/// All features related to this Type by FeatureMemberships that have direction out or inout.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674960_365618_43170", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_4_12e503d9_1623952188842_882068_37169")]
[Implements(implementation: "IType.Output")]
public List<IFeature> output => this.ComputeOutput();
/// <summary>
/// The ActionUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1591479011613_547927_1091", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_4_12e503d9_1618943849505_989631_257")]
[Implements(implementation: "IDefinition.OwnedAction")]
public List<IActionUsage> ownedAction => this.ComputeOwnedAction();
/// <summary>
/// The AllocationUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1611430819239_430196_1024", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1591480607506_951212_2333")]
[Implements(implementation: "IDefinition.OwnedAllocation")]
public List<IAllocationUsage> ownedAllocation => this.ComputeOwnedAllocation();
/// <summary>
/// The AnalysisCaseUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1591152747086_367030_3846", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_59601fc_1590257108055_7496_483")]
[Implements(implementation: "IDefinition.OwnedAnalysisCase")]
public List<IAnalysisCaseUsage> ownedAnalysisCase => this.ComputeOwnedAnalysisCase();
/// <summary>
/// The ownedRelationships of this Element that are Annotations, for which this Element is the
/// annotatedElement.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1594152527165_702130_2500", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1543092026091_217766_16748")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1543094430277_599480_18543")]
[Implements(implementation: "IElement.OwnedAnnotation")]
public List<IAnnotation> ownedAnnotation => this.ComputeOwnedAnnotation();
/// <summary>
/// The AttributeUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1591500614097_490259_4413", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1565479686637_967933_23236")]
[Implements(implementation: "IDefinition.OwnedAttribute")]
public List<IAttributeUsage> ownedAttribute => this.ComputeOwnedAttribute();
/// <summary>
/// The CalculationUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1588215335104_898924_667", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1591479011613_547927_1091")]
[Implements(implementation: "IDefinition.OwnedCalculation")]
public List<ICalculationUsage> ownedCalculation => this.ComputeOwnedCalculation();
/// <summary>
/// The code>CaseUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_59601fc_1590257108055_7496_483", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1588215335104_898924_667")]
[Implements(implementation: "IDefinition.OwnedCase")]
public List<ICaseUsage> ownedCase => this.ComputeOwnedCase();
/// <summary>
/// The ConcernUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1617051597354_928367_1357", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1583000559760_444344_1273")]
[Implements(implementation: "IDefinition.OwnedConcern")]
public List<IConcernUsage> ownedConcern => this.ComputeOwnedConcern();
/// <summary>
/// A Conjugation owned by this Type for which the Type is the originalType.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1575482646809_280165_440", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1575482490144_309557_300")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1543092026091_217766_16748")]
[Implements(implementation: "IType.OwnedConjugator")]
public IConjugation ownedConjugator => this.ComputeOwnedConjugator();
/// <summary>
/// The ConnectorAsUsages that are ownedUsages of this Definition. Note that this list includes
/// BindingConnectorAsUsages, SuccessionAsUsages, and FlowUsages because these are ConnectorAsUsages
/// even though they are not ConnectionUsages.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1591480607506_951212_2333", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1565479686637_967933_23236")]
[Implements(implementation: "IDefinition.OwnedConnection")]
public List<IConnectorAsUsage> ownedConnection => this.ComputeOwnedConnection();
/// <summary>
/// The ConstraintUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1578068081992_244000_1803", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_4_12e503d9_1618943849505_989631_257")]
[Implements(implementation: "IDefinition.OwnedConstraint")]
public List<IConstraintUsage> ownedConstraint => this.ComputeOwnedConstraint();
/// <summary>
/// The ownedRelationships of this Type that are Differencings, having this Type as their
/// typeDifferenced.
/// </summary>
[Property(xmiId: "_19_0_4_b9102da_1661871168454_98082_797", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674971_80547_43227")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1543092026091_217766_16748")]
[Implements(implementation: "IType.OwnedDifferencing")]
public List<IDifferencing> ownedDifferencing => this.ComputeOwnedDifferencing();
/// <summary>
/// The ownedRelationships of this Type that are Disjoinings, for which the Type is the typeDisjoined
/// Type.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1627447519613_145554_370", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: int.MaxValue, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1543092026091_217766_16748")]
[SubsettedProperty(propertyName: "_19_0_4_b9102da_1623183194914_502526_616")]
[Implements(implementation: "IType.OwnedDisjoining")]
public List<IDisjoining> ownedDisjoining => this.ComputeOwnedDisjoining();
/// <summary>
/// The Elements owned by this Element, derived as the ownedRelatedElements of the ownedRelationships of
/// this Element.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1543092869879_112608_17278", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IElement.OwnedElement")]
public List<IElement> ownedElement => this.ComputeOwnedElement();
/// <summary>
/// All endFeatures of this Type that are ownedFeatures.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1563834516278_687758_20652", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1562476168385_824569_22106")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674959_226999_43167")]
[Implements(implementation: "IType.OwnedEndFeature")]
public List<IFeature> ownedEndFeature => this.ComputeOwnedEndFeature();
/// <summary>
/// The EnumerationUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1606946600508_763872_252", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1591500614097_490259_4413")]
[Implements(implementation: "IDefinition.OwnedEnumeration")]
public List<IEnumerationUsage> ownedEnumeration => this.ComputeOwnedEnumeration();
/// <summary>
/// The ownedMemberFeatures of the ownedFeatureMemberships of this Type.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674959_226999_43167", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674979_259543_43268")]
[Implements(implementation: "IType.OwnedFeature")]
public List<IFeature> ownedFeature => this.ComputeOwnedFeature();
/// <summary>
/// The ownedMemberships of this Type that are FeatureMemberships, for which the Type is the owningType.
/// Each such FeatureMembership identifies an ownedFeature of the Type.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674960_868417_43171", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674979_190614_43269")]
[SubsettedProperty(propertyName: "_19_0_4_12e503d9_1651076866512_962346_485")]
[Implements(implementation: "IType.OwnedFeatureMembership")]
public List<IFeatureMembership> ownedFeatureMembership => this.ComputeOwnedFeatureMembership();
/// <summary>
/// The FlowUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1624055201422_104863_1697", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1591480607506_951212_2333")]
[Implements(implementation: "IDefinition.OwnedFlow")]
public List<IFlowUsage> ownedFlow => this.ComputeOwnedFlow();
/// <summary>
/// The ownedRelationships of this Namespace that are Imports, for which the Namespace is the
/// importOwningNamespace.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674974_746786_43247", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1543092026091_217766_16748")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674971_80547_43227")]
[Implements(implementation: "INamespace.OwnedImport")]
public List<IImport> ownedImport => this.ComputeOwnedImport();
/// <summary>
/// The InterfaceUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1591498709150_220812_4128", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1591480607506_951212_2333")]
[Implements(implementation: "IDefinition.OwnedInterface")]
public List<IInterfaceUsage> ownedInterface => this.ComputeOwnedInterface();
/// <summary>
/// The ownedRelationships of this Type that are Intersectings, have the Type as their typeIntersected.
/// </summary>
[Property(xmiId: "_19_0_4_b9102da_1623242552144_910757_524", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674971_80547_43227")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1543092026091_217766_16748")]
[Implements(implementation: "IType.OwnedIntersecting")]
public List<IIntersecting> ownedIntersecting => this.ComputeOwnedIntersecting();
/// <summary>
/// The ItemUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1591482567975_649284_3005", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_4_12e503d9_1618943849505_989631_257")]
[Implements(implementation: "IDefinition.OwnedItem")]
public List<IItemUsage> ownedItem => this.ComputeOwnedItem();
/// <summary>
/// The owned members of this Namespace, which are the <cpde>ownedMemberElements of the ownedMemberships
/// of the Namespace.</cpde>
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674979_259543_43268", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674979_644335_43267")]
[Implements(implementation: "INamespace.OwnedMember")]
public List<IElement> ownedMember => this.ComputeOwnedMember();
/// <summary>
/// The ownedRelationships of this Namespace that are Memberships, for which the Namespace is the
/// membershipOwningNamespace.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674979_190614_43269", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674962_198288_43183")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674971_80547_43227")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1543092026091_217766_16748")]
[Implements(implementation: "INamespace.OwnedMembership")]
public List<IMembership> ownedMembership => this.ComputeOwnedMembership();
/// <summary>
/// The MetadataUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1661488358064_457109_2881", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1591482567975_649284_3005")]
[Implements(implementation: "IDefinition.OwnedMetadata")]
public List<IMetadataUsage> ownedMetadata => this.ComputeOwnedMetadata();
/// <summary>
/// The OccurrenceUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1618943849505_989631_257", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1565479686637_967933_23236")]
[Implements(implementation: "IDefinition.OwnedOccurrence")]
public List<IOccurrenceUsage> ownedOccurrence => this.ComputeOwnedOccurrence();
/// <summary>
/// The PartUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1591496643392_630316_3279", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1591482567975_649284_3005")]
[Implements(implementation: "IDefinition.OwnedPart")]
public List<IPartUsage> ownedPart => this.ComputeOwnedPart();
/// <summary>
/// The PortUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1565494319970_455996_25799", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1565479686637_967933_23236")]
[Implements(implementation: "IDefinition.OwnedPort")]
public List<IPortUsage> ownedPort => this.ComputeOwnedPort();
/// <summary>
/// The ReferenceUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1591477471991_39731_908", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1565479686637_967933_23236")]
[Implements(implementation: "IDefinition.OwnedReference")]
public List<IReferenceUsage> ownedReference => this.ComputeOwnedReference();
/// <summary>
/// The Relationships for which this Element is the owningRelatedElement.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1543092026091_217766_16748", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: false, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674961_585972_43176")]
[Implements(implementation: "IElement.OwnedRelationship")]
public IReadOnlyList<IRelationship> OwnedRelationship => ((IContainedElement)this).OwnedRelationship;
/// <summary>Backing field for IElement.OwnedRelationship</summary>
ContainerList<IElement, IRelationship> IContainedElement.OwnedRelationship { get; set; }
/// <summary>
/// The RenderingUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1596741437225_963350_6474", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1591496643392_630316_3279")]
[Implements(implementation: "IDefinition.OwnedRendering")]
public List<IRenderingUsage> ownedRendering => this.ComputeOwnedRendering();
/// <summary>
/// The RequirementUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1583000559760_444344_1273", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1578068081992_244000_1803")]
[Implements(implementation: "IDefinition.OwnedRequirement")]
public List<IRequirementUsage> ownedRequirement => this.ComputeOwnedRequirement();
/// <summary>
/// The ownedRelationships of this Type that are Specializations, for which the Type is the specific
/// Type.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674959_579676_43168", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1543092026091_217766_16748")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674984_558067_43292")]
[Implements(implementation: "IType.OwnedSpecialization")]
public List<ISpecialization> ownedSpecialization => this.ComputeOwnedSpecialization();
/// <summary>
/// The StateUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1575587977045_745776_941", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1591479011613_547927_1091")]
[Implements(implementation: "IDefinition.OwnedState")]
public List<IStateUsage> ownedState => this.ComputeOwnedState();
/// <summary>
/// The ownedSpecializations of this Classifier that are Subclassifications, for which this Classifier
/// is the subclassifier.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1543189170643_419862_25507", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: int.MaxValue, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674959_579676_43168")]
[Implements(implementation: "IClassifier.OwnedSubclassification")]
public List<ISubclassification> ownedSubclassification => this.ComputeOwnedSubclassification();
/// <summary>
/// The TransitionUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1578598061680_350995_3923", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1565479686637_967933_23236")]
[Implements(implementation: "IDefinition.OwnedTransition")]
public List<ITransitionUsage> ownedTransition => this.ComputeOwnedTransition();
/// <summary>
/// The ownedRelationships of this Type that are Unionings, having the Type as their typeUnioned.
/// </summary>
[Property(xmiId: "_19_0_4_b9102da_1661869978505_968809_460", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1543092026091_217766_16748")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674971_80547_43227")]
[Implements(implementation: "IType.OwnedUnioning")]
public List<IUnioning> ownedUnioning => this.ComputeOwnedUnioning();
/// <summary>
/// The Usages that are ownedFeatures of this Definition.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1565479686637_967933_23236", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674959_226999_43167")]
[Implements(implementation: "IDefinition.OwnedUsage")]
public List<IUsage> ownedUsage => this.ComputeOwnedUsage();
/// <summary>
/// The UseCaseUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1621461106608_978605_945", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_59601fc_1590257108055_7496_483")]
[Implements(implementation: "IDefinition.OwnedUseCase")]
public List<IUseCaseUsage> ownedUseCase => this.ComputeOwnedUseCase();
/// <summary>
/// The VerificationCaseUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1596821523387_872104_10416", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_59601fc_1590257108055_7496_483")]
[Implements(implementation: "IDefinition.OwnedVerificationCase")]
public List<IVerificationCaseUsage> ownedVerificationCase => this.ComputeOwnedVerificationCase();
/// <summary>
/// The ViewUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1596644570381_840567_784", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1591496643392_630316_3279")]
[Implements(implementation: "IDefinition.OwnedView")]
public List<IViewUsage> ownedView => this.ComputeOwnedView();
/// <summary>
/// The ViewpointUsages that are ownedUsages of this Definition.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1596649828408_673531_3683", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1583000559760_444344_1273")]
[Implements(implementation: "IDefinition.OwnedViewpoint")]
public List<IViewpointUsage> ownedViewpoint => this.ComputeOwnedViewpoint();
/// <summary>
/// The owner of this Element, derived as the owningRelatedElement of the owningRelationship of this
/// Element, if any.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1543092869879_744477_17277", aggregation: AggregationKind.None, lowerValue: 0, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IElement.Owner")]
public IElement owner => this.ComputeOwner();
/// <summary>
/// The owningRelationship of this Element, if that Relationship is a Membership.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674972_622493_43236", aggregation: AggregationKind.None, lowerValue: 0, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674973_469277_43243")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674986_482273_43303")]
[Implements(implementation: "IElement.OwningMembership")]
public IOwningMembership owningMembership => this.ComputeOwningMembership();
/// <summary>
/// The Namespace that owns this Element, which is the membershipOwningNamespace of the owningMembership
/// of this Element, if any.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674986_474739_43306", aggregation: AggregationKind.None, lowerValue: 0, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674980_717955_43271")]
[Implements(implementation: "IElement.OwningNamespace")]
public INamespace owningNamespace => this.ComputeOwningNamespace();
/// <summary>
/// The Relationship for which this Element is an ownedRelatedElement, if any.
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1533160674986_482273_43303", aggregation: AggregationKind.None, lowerValue: 0, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: false, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674961_585972_43176")]
[Implements(implementation: "IElement.OwningRelationship")]
public IRelationship OwningRelationship => ((IContainedElement)this).OwningRelationship;
/// <summary>Backing field for IElement.OwningRelationship</summary>
IRelationship IContainedElement.OwningRelationship { get; set; }
/// <summary>
/// The full ownership-qualified name of this Element, represented in a form that is valid according to
/// the KerML textual concrete syntax for qualified names (including use of unrestricted name notation
/// and escaped characters, as necessary). The qualifiedName is null if this Element has no
/// owningNamespace or if there is not a complete ownership chain of named Namespaces from a root
/// Namespace to this Element. If the owningNamespace has other Elements with the same name as this one,
/// then the qualifiedName is null for all such Elements other than the first.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1611356604987_900871_594", aggregation: AggregationKind.None, lowerValue: 0, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IElement.QualifiedName")]
public string qualifiedName => this.ComputeQualifiedName();
/// <summary>
/// The short name to be used for this Element during name resolution within its owningNamespace. This
/// is derived using the effectiveShortName() operation. By default, it is the same as the
/// declaredShortName, but this is overridden for certain kinds of Elements to compute a shortName even
/// when the declaredName is null.
/// </summary>
[Property(xmiId: "_19_0_4_12e503d9_1673496405504_544235_24", aggregation: AggregationKind.None, lowerValue: 0, upperValue: 1, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IElement.ShortName")]
public string shortName => this.ComputeShortName();
/// <summary>
/// The TextualRepresentations that annotate this Element.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1594154758493_640290_3388", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_19_0_2_12e503d9_1594145755059_76214_87")]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1543092869879_112608_17278")]
[Implements(implementation: "IElement.TextualRepresentation")]
public List<ITextualRepresentation> textualRepresentation => this.ComputeTextualRepresentation();
/// <summary>
/// The interpretations of a Type with unioningTypes are asserted to be the same as those of all the
/// unioningTypes together, which are the Types derived from the unioningType of the ownedUnionings of
/// this Type. For example, a Classifier for people might be the union of Classifiers for all the sexes.
/// Similarly, a feature for people's children might be the union of features dividing them in the
/// same ways as people in general.
/// </summary>
[Property(xmiId: "_19_0_4_b9102da_1661974896766_783268_1231", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[Implements(implementation: "IType.UnioningType")]
public List<IType> unioningType => this.ComputeUnioningType();
/// <summary>
/// The Usages that are features of this Definition (not necessarily owned).
/// </summary>
[Property(xmiId: "_18_5_3_12e503d9_1565498571495_48981_27786", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: true, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674959_326391_43166")]
[Implements(implementation: "IDefinition.Usage")]
public List<IUsage> usage => this.ComputeUsage();
/// <summary>
/// The Usages which represent the variants of this Definition as a variation point Definition, if
/// isVariation = true. If isVariation = false, the there must be no variants.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1590979457191_746167_951", aggregation: AggregationKind.None, lowerValue: 0, upperValue: int.MaxValue, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674979_259543_43268")]
[RedefinedByProperty("IEnumerationDefinition.EnumeratedValue")]
[Implements(implementation: "IDefinition.Variant")]
List<IUsage> Systems.DefinitionAndUsage.IDefinition.variant => [.. this.enumeratedValue];
/// <summary>
/// The ownedMemberships of this Definition that are VariantMemberships. If isVariation = true, then
/// this must be all ownedMemberships of the Definition. If isVariation = false, then
/// variantMembershipmust be empty.
/// </summary>
[Property(xmiId: "_19_0_2_12e503d9_1590979005861_503124_894", aggregation: AggregationKind.Composite, lowerValue: 0, upperValue: int.MaxValue, isOrdered: false, isReadOnly: false, isDerived: true, isDerivedUnion: false, isUnique: true, defaultValue: null)]
[SubsettedProperty(propertyName: "_18_5_3_12e503d9_1533160674979_190614_43269")]
[Implements(implementation: "IDefinition.VariantMembership")]
public List<IVariantMembership> variantMembership => this.ComputeVariantMembership();
}
}
// ------------------------------------------------------------------------------------------------
// --------THIS IS AN AUTOMATICALLY GENERATED FILE. ANY MANUAL CHANGES WILL BE OVERWRITTEN!--------
// ------------------------------------------------------------------------------------------------