Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan D. Brooks2013-10-10 05:46:16 +0000
committerGerrit Code Review @ Eclipse.org2013-10-17 21:13:12 +0000
commit3a03d314f93830f3948ccbdae53a80c059207a5f (patch)
treef3c92ca159b4bda0030b515198a33051f00c07dd /plugins/org.eclipse.osee.framework.core
parente7a2a3df7788e248a45e8f5ed771ad87f96c2893 (diff)
downloadorg.eclipse.osee-3a03d314f93830f3948ccbdae53a80c059207a5f.tar.gz
org.eclipse.osee-3a03d314f93830f3948ccbdae53a80c059207a5f.tar.xz
org.eclipse.osee-3a03d314f93830f3948ccbdae53a80c059207a5f.zip
refactor: Parameterize the Identifiable interface
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/IArtifactToken.java2
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/Identifiable.java3
2 files changed, 2 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/IArtifactToken.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/IArtifactToken.java
index 0303ee944dd..ae14b44742e 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/IArtifactToken.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/IArtifactToken.java
@@ -14,6 +14,6 @@ package org.eclipse.osee.framework.core.data;
* @author Ryan D. Brooks
* @author Donald G. Dunne
*/
-public interface IArtifactToken extends Identifiable, FullyNamed, HasArtifactType {
+public interface IArtifactToken extends Identifiable<String>, FullyNamed, HasArtifactType {
// composition interface requires no additional methods,fields
}
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/Identifiable.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/Identifiable.java
index e3b6a2f506c..3008d5e6259 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/Identifiable.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/Identifiable.java
@@ -10,10 +10,9 @@
*******************************************************************************/
package org.eclipse.osee.framework.core.data;
-
/**
* @author Roberto E. Escobar
*/
-public interface Identifiable extends Identity<String>, Named {
+public interface Identifiable<T> extends Identity<T>, Named {
//
}

Back to the top