Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrbrooks2010-08-09 20:54:58 +0000
committerrbrooks2010-08-09 20:54:58 +0000
commitfea50b1a2ced0f17a0059b4524656abf7c419ce6 (patch)
treeea15ea6c209b6fce35c8d0ee59399ddede0f2854 /plugins/org.eclipse.osee.framework.core.dsl.integration.test
parenta6267b1b107c6c62cece1ed1ed2351b09aa96957 (diff)
downloadorg.eclipse.osee-fea50b1a2ced0f17a0059b4524656abf7c419ce6.tar.gz
org.eclipse.osee-fea50b1a2ced0f17a0059b4524656abf7c419ce6.tar.xz
org.eclipse.osee-fea50b1a2ced0f17a0059b4524656abf7c419ce6.zip
converted more string based type references to use type tokens
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.dsl.integration.test')
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.integration.test/src/org/eclipse/osee/framework/core/dsl/integration/test/internal/AttributeTypeRestrictionHandlerTest.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.integration.test/src/org/eclipse/osee/framework/core/dsl/integration/test/internal/AttributeTypeRestrictionHandlerTest.java b/plugins/org.eclipse.osee.framework.core.dsl.integration.test/src/org/eclipse/osee/framework/core/dsl/integration/test/internal/AttributeTypeRestrictionHandlerTest.java
index 16a6eba9954..82718d1571d 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.integration.test/src/org/eclipse/osee/framework/core/dsl/integration/test/internal/AttributeTypeRestrictionHandlerTest.java
+++ b/plugins/org.eclipse.osee.framework.core.dsl.integration.test/src/org/eclipse/osee/framework/core/dsl/integration/test/internal/AttributeTypeRestrictionHandlerTest.java
@@ -47,7 +47,7 @@ public class AttributeTypeRestrictionHandlerTest extends BaseRestrictionHandlerT
@Test
public void testProcessDataAttributeTypeNotApplicable() throws OseeCoreException {
- IAttributeType attributeType = CoreAttributeTypes.NAME;
+ IAttributeType attributeType = CoreAttributeTypes.Name;
XAttributeType attributeTypeRef =
MockModel.createXAttributeType(attributeType.getGuid(), attributeType.getName());
@@ -64,7 +64,7 @@ public class AttributeTypeRestrictionHandlerTest extends BaseRestrictionHandlerT
@Test
public void testProcessDataAttributeTypeIsApplicable() throws OseeCoreException {
- IAttributeType attributeType = CoreAttributeTypes.NAME;
+ IAttributeType attributeType = CoreAttributeTypes.Name;
XAttributeType attributeTypeRef =
MockModel.createXAttributeType(attributeType.getGuid(), attributeType.getName());
@@ -81,7 +81,7 @@ public class AttributeTypeRestrictionHandlerTest extends BaseRestrictionHandlerT
@Test
public void testProcessDataAttributeTypeIsApplicableArtifactTypeBoundedNoMatch() throws OseeCoreException {
- IAttributeType attributeType = CoreAttributeTypes.NAME;
+ IAttributeType attributeType = CoreAttributeTypes.Name;
XAttributeType attributeTypeRef =
MockModel.createXAttributeType(attributeType.getGuid(), attributeType.getName());
@@ -105,7 +105,7 @@ public class AttributeTypeRestrictionHandlerTest extends BaseRestrictionHandlerT
@Test
public void testProcessDataAttributeTypeIsApplicableArtifactTypeMatch() throws OseeCoreException {
- IAttributeType attributeType = CoreAttributeTypes.NAME;
+ IAttributeType attributeType = CoreAttributeTypes.Name;
XAttributeType attributeTypeRef =
MockModel.createXAttributeType(attributeType.getGuid(), attributeType.getName());
@@ -128,7 +128,7 @@ public class AttributeTypeRestrictionHandlerTest extends BaseRestrictionHandlerT
@Test
public void testProcessDataAttributeTypeIsApplicableArtifactTypeMatchWithInheritance() throws OseeCoreException {
- IAttributeType attributeType = CoreAttributeTypes.NAME;
+ IAttributeType attributeType = CoreAttributeTypes.Name;
XAttributeType attributeTypeRef =
MockModel.createXAttributeType(attributeType.getGuid(), attributeType.getName());

Back to the top