Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/types/impl/ArtifactTypeIndex.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/types/impl/ArtifactTypeIndex.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/types/impl/ArtifactTypeIndex.java b/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/types/impl/ArtifactTypeIndex.java
index ce85ea87f0f..0bcd87845c1 100644
--- a/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/types/impl/ArtifactTypeIndex.java
+++ b/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/types/impl/ArtifactTypeIndex.java
@@ -62,7 +62,7 @@ public class ArtifactTypeIndex extends TokenTypeIndex<IArtifactType, XArtifactTy
return metaData.attributeTypes;
}
- public Collection<IArtifactType> getSuperTypes(IArtifactType artifactType) {
+ public Collection<IArtifactType> getSuperTypes(ArtifactTypeId artifactType) {
ArtifactTypeMetaData metaData = tokenToTypeData.get(artifactType);
return metaData != null ? metaData.getSuperTypes() : Collections.<IArtifactType> emptyList();
}
@@ -76,9 +76,9 @@ public class ArtifactTypeIndex extends TokenTypeIndex<IArtifactType, XArtifactTy
return !getSuperTypes(artType).isEmpty();
}
- public boolean inheritsFrom(IArtifactType thisType, IArtifactType... otherTypes) {
+ public boolean inheritsFrom(ArtifactTypeId thisType, ArtifactTypeId... otherTypes) {
boolean result = false;
- for (IArtifactType otherType : otherTypes) {
+ for (ArtifactTypeId otherType : otherTypes) {
if (inheritsFromSingle(thisType, otherType)) {
result = true;
break;
@@ -87,7 +87,7 @@ public class ArtifactTypeIndex extends TokenTypeIndex<IArtifactType, XArtifactTy
return result;
}
- private boolean inheritsFromSingle(IArtifactType thisType, IArtifactType otherType) {
+ private boolean inheritsFromSingle(ArtifactTypeId thisType, ArtifactTypeId otherType) {
boolean result = false;
if (thisType.equals(otherType)) {
result = true;

Back to the top