Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2018-01-23 18:32:50 +0000
committerRyan Brooks2018-01-24 17:41:24 +0000
commite309f9c6dca9464acd958d77ba01404354c0d2c8 (patch)
treef8296bf409b91b3d4a59a34ca2c031afc7ec89ad /plugins/org.eclipse.osee.framework.skynet.core
parent0db5b86d18e170487a9e54ccc2d2f669edee5b23 (diff)
downloadorg.eclipse.osee-e309f9c6dca9464acd958d77ba01404354c0d2c8.tar.gz
org.eclipse.osee-e309f9c6dca9464acd958d77ba01404354c0d2c8.tar.xz
org.eclipse.osee-e309f9c6dca9464acd958d77ba01404354c0d2c8.zip
bug[ats_TW6213]: Implement ArtifactReferencedAttribute.toString to return refenced id
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/ArtifactReferenceAttribute.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/ArtifactReferenceAttribute.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/ArtifactReferenceAttribute.java
index 3b9c08af44d..551c61fd3fe 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/ArtifactReferenceAttribute.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/ArtifactReferenceAttribute.java
@@ -16,8 +16,15 @@ import org.eclipse.osee.framework.core.data.ArtifactId;
* @author Roberto E. Escobar
*/
public class ArtifactReferenceAttribute extends IdentityReferenceAttribute {
+
@Override
public ArtifactId convertStringToValue(String value) {
return ArtifactId.valueOf(value);
}
+
+ @Override
+ public String toString() {
+ return getValue().getIdString();
+ }
+
} \ No newline at end of file

Back to the top