Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrescobar2011-08-26 23:20:26 +0000
committerRyan D. Brooks2011-08-26 23:20:26 +0000
commit16552a4e6ecddd443f081a1726ab2b8c969aed10 (patch)
tree725c2e2484f55456719da0c95dbac193ae12d3f6 /plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee
parent164e440df1aebf6751f54f8f0dc7b4553aadebba (diff)
downloadorg.eclipse.osee-16552a4e6ecddd443f081a1726ab2b8c969aed10.tar.gz
org.eclipse.osee-16552a4e6ecddd443f081a1726ab2b8c969aed10.tar.xz
org.eclipse.osee-16552a4e6ecddd443f081a1726ab2b8c969aed10.zip
feature[ats_M1Y56]: Create HexUtil and HexUtilTest
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee')
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslTypeSheetRenderer.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslTypeSheetRenderer.java b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslTypeSheetRenderer.java
index b4d87ba3dfe..d4e2b396d5e 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslTypeSheetRenderer.java
+++ b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslTypeSheetRenderer.java
@@ -20,8 +20,8 @@ import java.util.Set;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.emf.common.util.EList;
+import org.eclipse.osee.framework.core.dsl.integration.util.HexUtil;
import org.eclipse.osee.framework.core.dsl.integration.util.ModelUtil;
-import org.eclipse.osee.framework.core.dsl.integration.util.OseeUtil;
import org.eclipse.osee.framework.core.dsl.oseeDsl.OseeDsl;
import org.eclipse.osee.framework.core.dsl.oseeDsl.XArtifactType;
import org.eclipse.osee.framework.core.dsl.oseeDsl.XAttributeType;
@@ -188,16 +188,16 @@ public class OseeDslTypeSheetRenderer extends FileSystemRenderer {
EList<XRelationType> relationTypes = model.getRelationTypes();
for (XArtifactType type : artifactTypes) {
- addUuid(OseeUtil.convertHexStringToLong(type.getUuid()), uuids);
+ addUuid(HexUtil.toLong(type.getUuid()), uuids);
}
for (XAttributeType type : attributeTypes) {
- addUuid(OseeUtil.convertHexStringToLong(type.getUuid()), uuids);
+ addUuid(HexUtil.toLong(type.getUuid()), uuids);
}
for (XOseeEnumType type : enumTypes) {
- addUuid(OseeUtil.convertHexStringToLong(type.getUuid()), uuids);
+ addUuid(HexUtil.toLong(type.getUuid()), uuids);
}
for (XRelationType type : relationTypes) {
- addUuid(OseeUtil.convertHexStringToLong(type.getUuid()), uuids);
+ addUuid(HexUtil.toLong(type.getUuid()), uuids);
}
if (uuids.contains(0L)) {

Back to the top