Skip to content

Commit c1e2ea6

Browse files
authored
Merge pull request #65 from Systems-Modeling/feature/ST5AS-188
ST5AS-188 Update to 2022-02 metamodel baseline
2 parents 5d1346d + d01165b commit c1e2ea6

18 files changed

Lines changed: 2396 additions & 490 deletions

app/dao/impl/jpa/JpaDataDao.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
import org.omg.sysml.internal.CommitDataVersionIndex;
3232
import org.omg.sysml.internal.impl.CommitDataVersionIndexImpl;
3333
import org.omg.sysml.internal.impl.CommitDataVersionIndexImpl_;
34-
import org.omg.sysml.internal.impl.CommitIndexImpl_;
3534
import org.omg.sysml.lifecycle.Commit;
3635
import org.omg.sysml.lifecycle.Data;
3736
import org.omg.sysml.lifecycle.DataIdentity;

app/org/omg/sysml/lifecycle/impl/package-info.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
@MetaValue(value = "CaseUsage", targetEntity = CaseUsageImpl.class),
5555
@MetaValue(value = "Class", targetEntity = ClassImpl.class),
5656
@MetaValue(value = "Classifier", targetEntity = ClassifierImpl.class),
57+
@MetaValue(value = "CollectExpression", targetEntity = CollectExpressionImpl.class),
5758
@MetaValue(value = "Comment", targetEntity = CommentImpl.class),
5859
@MetaValue(value = "ConcernDefinition", targetEntity = ConcernDefinitionImpl.class),
5960
@MetaValue(value = "ConcernUsage", targetEntity = ConcernUsageImpl.class),
@@ -83,6 +84,7 @@
8384
@MetaValue(value = "Expose", targetEntity = ExposeImpl.class),
8485
@MetaValue(value = "Expression", targetEntity = ExpressionImpl.class),
8586
@MetaValue(value = "Feature", targetEntity = FeatureImpl.class),
87+
@MetaValue(value = "FeatureChainExpression", targetEntity = FeatureChainExpressionImpl.class),
8688
@MetaValue(value = "FeatureChaining", targetEntity = FeatureChainingImpl.class),
8789
@MetaValue(value = "FeatureMembership", targetEntity = FeatureMembershipImpl.class),
8890
@MetaValue(value = "FeatureReferenceExpression", targetEntity = FeatureReferenceExpressionImpl.class),
@@ -132,8 +134,6 @@
132134
@MetaValue(value = "ParameterMembership", targetEntity = ParameterMembershipImpl.class),
133135
@MetaValue(value = "PartDefinition", targetEntity = PartDefinitionImpl.class),
134136
@MetaValue(value = "PartUsage", targetEntity = PartUsageImpl.class),
135-
@MetaValue(value = "PathSelectExpression", targetEntity = PathSelectExpressionImpl.class),
136-
@MetaValue(value = "PathStepExpression", targetEntity = PathStepExpressionImpl.class),
137137
@MetaValue(value = "PerformActionUsage", targetEntity = PerformActionUsageImpl.class),
138138
@MetaValue(value = "PortConjugation", targetEntity = PortConjugationImpl.class),
139139
@MetaValue(value = "PortDefinition", targetEntity = PortDefinitionImpl.class),
@@ -152,6 +152,7 @@
152152
@MetaValue(value = "ResultExpressionMembership", targetEntity = ResultExpressionMembershipImpl.class),
153153
@MetaValue(value = "ReturnParameterMembership", targetEntity = ReturnParameterMembershipImpl.class),
154154
@MetaValue(value = "SatisfyRequirementUsage", targetEntity = SatisfyRequirementUsageImpl.class),
155+
@MetaValue(value = "SelectExpression", targetEntity = SelectExpressionImpl.class),
155156
@MetaValue(value = "SendActionUsage", targetEntity = SendActionUsageImpl.class),
156157
@MetaValue(value = "SourceEnd", targetEntity = SourceEndImpl.class),
157158
@MetaValue(value = "Specialization", targetEntity = SpecializationImpl.class),

app/org/omg/sysml/metamodel/PathStepExpression.java renamed to app/org/omg/sysml/metamodel/CollectExpression.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
import java.util.List;
2626
import java.util.Set;
2727

28-
public interface PathStepExpression extends OperatorExpression, SysMLType {
28+
public interface CollectExpression extends OperatorExpression, SysMLType {
2929
String getOperator();
3030
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* SysML v2 REST/HTTP Pilot Implementation
3+
* Copyright (C) 2020 InterCAX LLC
4+
* Copyright (C) 2020 California Institute of Technology ("Caltech")
5+
*
6+
* This program is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU Lesser General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* This program is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU Lesser General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU Lesser General Public License
17+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
18+
*
19+
* @license LGPL-3.0-or-later <http://spdx.org/licenses/LGPL-3.0-or-later>
20+
*/
21+
22+
package org.omg.sysml.metamodel;
23+
24+
import java.util.Collection;
25+
import java.util.List;
26+
import java.util.Set;
27+
28+
public interface FeatureChainExpression extends OperatorExpression, SysMLType {
29+
String getOperator();
30+
31+
Feature getTargetFeature();
32+
}

app/org/omg/sysml/metamodel/PathSelectExpression.java renamed to app/org/omg/sysml/metamodel/SelectExpression.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
import java.util.List;
2626
import java.util.Set;
2727

28-
public interface PathSelectExpression extends OperatorExpression, SysMLType {
28+
public interface SelectExpression extends OperatorExpression, SysMLType {
2929
String getOperator();
3030
}

0 commit comments

Comments
 (0)