Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan D. Brooks2013-10-10 06:44:58 +0000
committerRyan D. Brooks2013-10-21 22:53:37 +0000
commit7aa55599bf7f04b651677ed712f7f1882a0d114a (patch)
treed729b1acecd47e40df8e59833f6c1ebcfa6632e4 /plugins/org.eclipse.osee.framework.skynet.core/src
parent29e5cbd3ada4944d87be066441d8b77a2a345285 (diff)
downloadorg.eclipse.osee-7aa55599bf7f04b651677ed712f7f1882a0d114a.tar.gz
org.eclipse.osee-7aa55599bf7f04b651677ed712f7f1882a0d114a.tar.xz
org.eclipse.osee-7aa55599bf7f04b651677ed712f7f1882a0d114a.zip
refactor: Rename NamedIdentity to FullyNamedIdentity
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/Artifact.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/Artifact.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/Artifact.java
index a8048533c21..2086f9566e7 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/Artifact.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/Artifact.java
@@ -32,7 +32,7 @@ import org.eclipse.osee.framework.core.data.IOseeBranch;
import org.eclipse.osee.framework.core.data.IRelationSorterId;
import org.eclipse.osee.framework.core.data.IRelationType;
import org.eclipse.osee.framework.core.data.IRelationTypeSide;
-import org.eclipse.osee.framework.core.data.NamedIdentity;
+import org.eclipse.osee.framework.core.data.FullyNamedIdentity;
import org.eclipse.osee.framework.core.enums.CoreAttributeTypes;
import org.eclipse.osee.framework.core.enums.CoreRelationTypes;
import org.eclipse.osee.framework.core.enums.DeletionFlag;
@@ -90,7 +90,7 @@ import org.eclipse.osee.framework.skynet.core.types.IArtifact;
* @author Ryan D. Brooks
*/
-public class Artifact extends NamedIdentity<String> implements IArtifact, IAdaptable, IBasicGuidArtifact {
+public class Artifact extends FullyNamedIdentity<String> implements IArtifact, IAdaptable, IBasicGuidArtifact {
public static final String UNNAMED = "Unnamed";
public static final String BEFORE_GUID_STRING = "/BeforeGUID/PrePend";
public static final String AFTER_GUID_STRING = "/AfterGUID";

Back to the top