diff options
author | Ryan D. Brooks | 2019-08-14 15:14:28 +0000 |
---|---|---|
committer | Ryan D. Brooks | 2020-12-15 21:41:00 +0000 |
commit | c724e40553d49ee0a56e343b3c8e0dd02bb6c780 (patch) | |
tree | 4119739746280fc35cf258fcf6e659ba937a2d31 | |
parent | d91b7a5ff0575106cf5bb8756244ee88400a084a (diff) | |
download | org.eclipse.osee-c724e40553d49ee0a56e343b3c8e0dd02bb6c780.tar.gz org.eclipse.osee-c724e40553d49ee0a56e343b3c8e0dd02bb6c780.tar.xz org.eclipse.osee-c724e40553d49ee0a56e343b3c8e0dd02bb6c780.zip |
refactor: Clarify orcs unrelate API
Change-Id: I3da2803c0e6df29f3a48a512614f032093b58e72
-rw-r--r-- | plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/util/IAtsChangeSet.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/util/IAtsChangeSet.java b/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/util/IAtsChangeSet.java index 58207d53760..f986712d9cf 100644 --- a/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/util/IAtsChangeSet.java +++ b/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/util/IAtsChangeSet.java @@ -90,7 +90,11 @@ public interface IAtsChangeSet { void addNotificationEvent(AtsNotificationEvent notifyEvent); - void unrelateAll(Object object, RelationTypeSide relationType); + /** + * Delete relations of type relationType between the given artifact and all artifacts on the side specified by + * relationType. + */ + void unrelateAll(Object artifact, RelationTypeSide relationType); void setRelation(Object object1, RelationTypeSide relationType, Object object2); |