Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/utility/AttributeTypeToXWidgetName.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/utility/AttributeTypeToXWidgetName.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/utility/AttributeTypeToXWidgetName.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/utility/AttributeTypeToXWidgetName.java
index c422ff929a8..00c199f3b58 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/utility/AttributeTypeToXWidgetName.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/utility/AttributeTypeToXWidgetName.java
@@ -43,9 +43,8 @@ public class AttributeTypeToXWidgetName {
xWidgetName =
"XComboDam(" + Collections.toString(",", AttributeTypeManager.getEnumerationValues(attributeType)) + ")";
} else {
- xWidgetName =
- "XSelectFromMultiChoiceDam(" + Collections.toString(",",
- AttributeTypeManager.getEnumerationValues(attributeType)) + ")";
+ xWidgetName = "XSelectFromMultiChoiceDam(" + Collections.toString(",",
+ AttributeTypeManager.getEnumerationValues(attributeType)) + ")";
}
} else if (AttributeTypeManager.isBaseTypeCompatible(BooleanAttribute.class, attributeType)) {
if (minOccurrence == 1) {
@@ -53,7 +52,8 @@ public class AttributeTypeToXWidgetName {
} else {
xWidgetName = "XComboBooleanDam";
}
- } else if (AttributeTypeManager.isBaseTypeCompatible(WordAttribute.class, attributeType) || attributeType.equals(CoreAttributeTypes.RelationOrder)) {
+ } else if (AttributeTypeManager.isBaseTypeCompatible(WordAttribute.class,
+ attributeType) || attributeType.equals(CoreAttributeTypes.RelationOrder)) {
xWidgetName = "XStackedDam";
} else if (AttributeTypeManager.isBaseTypeCompatible(DateAttribute.class, attributeType)) {
xWidgetName = "XDateDam";

Back to the top