labels changed - bug fixed
diff --git a/org.eclipse.emf.refactor.smells.eraser/bin/org/eclipse/emf/refactor/smells/eraser/ui/SuggestionDialog.class b/org.eclipse.emf.refactor.smells.eraser/bin/org/eclipse/emf/refactor/smells/eraser/ui/SuggestionDialog.class
index d1a87bb..af5fd98 100644
--- a/org.eclipse.emf.refactor.smells.eraser/bin/org/eclipse/emf/refactor/smells/eraser/ui/SuggestionDialog.class
+++ b/org.eclipse.emf.refactor.smells.eraser/bin/org/eclipse/emf/refactor/smells/eraser/ui/SuggestionDialog.class
Binary files differ
diff --git a/org.eclipse.emf.refactor.smells.eraser/src/org/eclipse/emf/refactor/smells/eraser/ui/SuggestionDialog.java b/org.eclipse.emf.refactor.smells.eraser/src/org/eclipse/emf/refactor/smells/eraser/ui/SuggestionDialog.java
index 9c123f9..f142fd2 100644
--- a/org.eclipse.emf.refactor.smells.eraser/src/org/eclipse/emf/refactor/smells/eraser/ui/SuggestionDialog.java
+++ b/org.eclipse.emf.refactor.smells.eraser/src/org/eclipse/emf/refactor/smells/eraser/ui/SuggestionDialog.java
@@ -354,7 +354,7 @@
 		String label = null;

 		String id = null;

 		for (EAttribute attribute : eObject.eClass().getEAllAttributes()) {

-			if (attribute.getName().equals("name")) {

+			if (attribute.getName().equalsIgnoreCase("name")) {

 				name = (String) eObject.eGet(attribute);

 			}

 		}

diff --git a/org.eclipse.emf.refactor.smells.runtime/bin/org/eclipse/emf/refactor/smells/runtime/ui/ResultModelTreeViewerLabelProvider.class b/org.eclipse.emf.refactor.smells.runtime/bin/org/eclipse/emf/refactor/smells/runtime/ui/ResultModelTreeViewerLabelProvider.class
index 58f27ac..aafbe19 100644
--- a/org.eclipse.emf.refactor.smells.runtime/bin/org/eclipse/emf/refactor/smells/runtime/ui/ResultModelTreeViewerLabelProvider.class
+++ b/org.eclipse.emf.refactor.smells.runtime/bin/org/eclipse/emf/refactor/smells/runtime/ui/ResultModelTreeViewerLabelProvider.class
Binary files differ
diff --git a/org.eclipse.emf.refactor.smells.runtime/src/org/eclipse/emf/refactor/smells/runtime/ui/ResultModelTreeViewerLabelProvider.java b/org.eclipse.emf.refactor.smells.runtime/src/org/eclipse/emf/refactor/smells/runtime/ui/ResultModelTreeViewerLabelProvider.java
index 3a55247..eccbbf5 100644
--- a/org.eclipse.emf.refactor.smells.runtime/src/org/eclipse/emf/refactor/smells/runtime/ui/ResultModelTreeViewerLabelProvider.java
+++ b/org.eclipse.emf.refactor.smells.runtime/src/org/eclipse/emf/refactor/smells/runtime/ui/ResultModelTreeViewerLabelProvider.java
@@ -99,7 +99,7 @@
 		String id = null;
 		
 		for(EAttribute attribute : eObject.eClass().getEAllAttributes()){
-			if (attribute.getName().equals("name")) {
+			if (attribute.getName().equalsIgnoreCase("name")) {
 				name = (String) eObject.eGet(attribute);
 				break;
 			}