Skip to content

Commit f9e0da4

Browse files
committed
ST6RI-707 Set KIND_EDEFAULT to "null" in the following classes:
- RequirementConstraintMembershipImpl - StateSubactionMembershipImpl - TransitionFeatureMembershipImpl - TriggerInvocationExpressionImpl
1 parent 3351cef commit f9e0da4

4 files changed

Lines changed: 17 additions & 13 deletions

File tree

org.omg.sysml/syntax-gen/org/omg/sysml/lang/sysml/impl/RequirementConstraintMembershipImpl.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*******************************************************************************
22
* SysML 2 Pilot Implementation
3-
* Copyright (c) 2020-2022 Model Driven Solutions, Inc.
3+
* Copyright (c) 2020-2023 Model Driven Solutions, Inc.
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU Lesser General Public License as published by
@@ -53,13 +53,14 @@ public class RequirementConstraintMembershipImpl extends FeatureMembershipImpl i
5353
/**
5454
* The default value of the '{@link #getKind() <em>Kind</em>}' attribute.
5555
* <!-- begin-user-doc -->
56+
* Even though the "kind" property is mandatory, the abstract syntax does not specify a default for it.
5657
* <!-- end-user-doc -->
5758
* @see #getKind()
58-
* @generated
59+
* @generated NOT
5960
* @ordered
6061
*/
61-
protected static final RequirementConstraintKind KIND_EDEFAULT = RequirementConstraintKind.ASSUMPTION;
62-
62+
protected static final RequirementConstraintKind KIND_EDEFAULT = null;
63+
6364
/**
6465
* The cached value of the '{@link #getKind() <em>Kind</em>}' attribute.
6566
* <!-- begin-user-doc -->

org.omg.sysml/syntax-gen/org/omg/sysml/lang/sysml/impl/StateSubactionMembershipImpl.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*******************************************************************************
22
* SysML 2 Pilot Implementation
3-
* Copyright (c) 2020-2022 Model Driven Solutions, Inc.
3+
* Copyright (c) 2020-2023 Model Driven Solutions, Inc.
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU Lesser General Public License as published by
@@ -51,12 +51,13 @@ public class StateSubactionMembershipImpl extends FeatureMembershipImpl implemen
5151
/**
5252
* The default value of the '{@link #getKind() <em>Kind</em>}' attribute.
5353
* <!-- begin-user-doc -->
54+
* Even though the "kind" property is mandatory, the abstract syntax does not specify a default for it.
5455
* <!-- end-user-doc -->
5556
* @see #getKind()
56-
* @generated
57+
* @generated NOT
5758
* @ordered
5859
*/
59-
protected static final StateSubactionKind KIND_EDEFAULT = StateSubactionKind.ENTRY;
60+
protected static final StateSubactionKind KIND_EDEFAULT = null;
6061

6162
/**
6263
* The cached value of the '{@link #getKind() <em>Kind</em>}' attribute.

org.omg.sysml/syntax-gen/org/omg/sysml/lang/sysml/impl/TransitionFeatureMembershipImpl.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*******************************************************************************
22
* SysML 2 Pilot Implementation
3-
* Copyright (c) 2020-2022 Model Driven Solutions, Inc.
3+
* Copyright (c) 2020-2023 Model Driven Solutions, Inc.
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU Lesser General Public License as published by
@@ -50,12 +50,13 @@ public class TransitionFeatureMembershipImpl extends FeatureMembershipImpl imple
5050
/**
5151
* The default value of the '{@link #getKind() <em>Kind</em>}' attribute.
5252
* <!-- begin-user-doc -->
53+
* Even though the "kind" property is mandatory, the abstract syntax does not specify a default for it.
5354
* <!-- end-user-doc -->
5455
* @see #getKind()
55-
* @generated
56+
* @generated NOT
5657
* @ordered
5758
*/
58-
protected static final TransitionFeatureKind KIND_EDEFAULT = TransitionFeatureKind.TRIGGER;
59+
protected static final TransitionFeatureKind KIND_EDEFAULT = null;
5960

6061
/**
6162
* The cached value of the '{@link #getKind() <em>Kind</em>}' attribute.

org.omg.sysml/syntax-gen/org/omg/sysml/lang/sysml/impl/TriggerInvocationExpressionImpl.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*******************************************************************************
22
* SysML 2 Pilot Implementation
3-
* Copyright (c) 2022 Model Driven Solutions, Inc.
3+
* Copyright (c) 2022-2023 Model Driven Solutions, Inc.
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU Lesser General Public License as published by
@@ -48,12 +48,13 @@ public class TriggerInvocationExpressionImpl extends InvocationExpressionImpl im
4848
/**
4949
* The default value of the '{@link #getKind() <em>Kind</em>}' attribute.
5050
* <!-- begin-user-doc -->
51+
* Even though the "kind" property is mandatory, the abstract syntax does not specify a default for it.
5152
* <!-- end-user-doc -->
5253
* @see #getKind()
53-
* @generated
54+
* @generated NOT
5455
* @ordered
5556
*/
56-
protected static final TriggerKind KIND_EDEFAULT = TriggerKind.WHEN;
57+
protected static final TriggerKind KIND_EDEFAULT = null;
5758

5859
/**
5960
* The cached value of the '{@link #getKind() <em>Kind</em>}' attribute.

0 commit comments

Comments
 (0)