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/attribute/AttributeManager.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/attribute/AttributeManager.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/attribute/AttributeManager.java b/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/attribute/AttributeManager.java
index 21d1734535e..62816d1040f 100644
--- a/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/attribute/AttributeManager.java
+++ b/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/attribute/AttributeManager.java
@@ -31,6 +31,8 @@ public interface AttributeManager extends AttributeContainer {
<T> T getSoleAttributeValue(IAttributeType attributeType) throws OseeCoreException;
+ <T> T getSoleAttributeValue(IAttributeType attributeType, T defaultValue) throws OseeCoreException;
+
String getSoleAttributeAsString(IAttributeType attributeType) throws OseeCoreException;
String getSoleAttributeAsString(IAttributeType attributeType, String defaultValue) throws OseeCoreException;

Back to the top