refactorings sorted
diff --git a/org.eclipse.emf.refactor.refactoring/bin/org/eclipse/emf/refactor/refactoring/core/Refactoring.class b/org.eclipse.emf.refactor.refactoring/bin/org/eclipse/emf/refactor/refactoring/core/Refactoring.class
index b54a326..1ed47bf 100644
--- a/org.eclipse.emf.refactor.refactoring/bin/org/eclipse/emf/refactor/refactoring/core/Refactoring.class
+++ b/org.eclipse.emf.refactor.refactoring/bin/org/eclipse/emf/refactor/refactoring/core/Refactoring.class
Binary files differ
diff --git a/org.eclipse.emf.refactor.refactoring/bin/org/eclipse/emf/refactor/refactoring/core/RefactoringLoader.class b/org.eclipse.emf.refactor.refactoring/bin/org/eclipse/emf/refactor/refactoring/core/RefactoringLoader.class
index b06d4ed..9a11ac0 100644
--- a/org.eclipse.emf.refactor.refactoring/bin/org/eclipse/emf/refactor/refactoring/core/RefactoringLoader.class
+++ b/org.eclipse.emf.refactor.refactoring/bin/org/eclipse/emf/refactor/refactoring/core/RefactoringLoader.class
Binary files differ
diff --git a/org.eclipse.emf.refactor.refactoring/src/org/eclipse/emf/refactor/refactoring/core/Refactoring.java b/org.eclipse.emf.refactor.refactoring/src/org/eclipse/emf/refactor/refactoring/core/Refactoring.java
index 6590e49..7b92a97 100644
--- a/org.eclipse.emf.refactor.refactoring/src/org/eclipse/emf/refactor/refactoring/core/Refactoring.java
+++ b/org.eclipse.emf.refactor.refactoring/src/org/eclipse/emf/refactor/refactoring/core/Refactoring.java
@@ -197,7 +197,7 @@
 		if(this.getName().equals(emfRefactoring.getName())){
 			return emfRefactoring.id.hashCode() - this.id.hashCode();
 		}else{
-		    return emfRefactoring.getName().compareTo(this.getName());	
+		    return this.getName().compareTo(emfRefactoring.getName());//emfRefactoring.getName().compareTo(this.getName());	
 		}
 	}
 
diff --git a/org.eclipse.emf.refactor.refactoring/src/org/eclipse/emf/refactor/refactoring/core/RefactoringLoader.java b/org.eclipse.emf.refactor.refactoring/src/org/eclipse/emf/refactor/refactoring/core/RefactoringLoader.java
index 5bd9a1d..ca4e4c7 100644
--- a/org.eclipse.emf.refactor.refactoring/src/org/eclipse/emf/refactor/refactoring/core/RefactoringLoader.java
+++ b/org.eclipse.emf.refactor.refactoring/src/org/eclipse/emf/refactor/refactoring/core/RefactoringLoader.java
@@ -29,6 +29,7 @@
 				e2.printStackTrace();
 			}
 		}
+		java.util.Collections.sort(r);
 		return r;
 	}