Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/attribute/AttributeContainer.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/attribute/AttributeContainer.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/attribute/AttributeContainer.java b/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/attribute/AttributeContainer.java
index cf6c136e89d..8ab96fcbcf1 100644
--- a/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/attribute/AttributeContainer.java
+++ b/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/attribute/AttributeContainer.java
@@ -24,9 +24,9 @@ import org.eclipse.osee.orcs.core.ds.Attribute;
*/
public interface AttributeContainer extends ArtifactToken {
- <T> void add(AttributeTypeToken attributeType, Attribute<T> attribute);
+ <T> void add(AttributeTypeToken<T> attributeType, Attribute<T> attribute);
- <T> void remove(AttributeTypeToken type, Attribute<T> attribute);
+ <T> void remove(AttributeTypeToken<T> type, Attribute<T> attribute);
boolean isLoaded();
@@ -36,11 +36,11 @@ public interface AttributeContainer extends ArtifactToken {
boolean areAttributesDirty();
- int getAttributeCount(AttributeTypeToken type);
+ <T> int getAttributeCount(AttributeTypeToken<T> type);
- int getAttributeCount(AttributeTypeToken type, DeletionFlag deletionFlag);
+ <T> int getAttributeCount(AttributeTypeToken<T> type, DeletionFlag deletionFlag);
- Collection<AttributeTypeToken> getValidAttributeTypes();
+ Collection<AttributeTypeToken<?>> getValidAttributeTypes();
- Collection<AttributeTypeToken> getExistingAttributeTypes();
+ Collection<AttributeTypeToken<?>> getExistingAttributeTypes();
} \ No newline at end of file

Back to the top