EMFTVM compatibility launcher.
diff --git a/plugins/org.eclipse.m2m.atl.common/src/org/eclipse/m2m/atl/common/ATLLaunchConstants.java b/plugins/org.eclipse.m2m.atl.common/src/org/eclipse/m2m/atl/common/ATLLaunchConstants.java
index 8828990..a1826c7 100644
--- a/plugins/org.eclipse.m2m.atl.common/src/org/eclipse/m2m/atl/common/ATLLaunchConstants.java
+++ b/plugins/org.eclipse.m2m.atl.common/src/org/eclipse/m2m/atl/common/ATLLaunchConstants.java
@@ -29,6 +29,9 @@
 	/** EMF VM name, for default values. */
 	String EMF_VM_NAME = "EMF-specific VM"; //$NON-NLS-1$
 
+	/** EMF VM name, for default values. */
+	String EMFTVM_NAME = "EMFTVM"; //$NON-NLS-1$
+
 	/** Default model handler name. */
 	String DEFAULT_MODEL_HANDLER_NAME = "EMF"; //$NON-NLS-1$
 
diff --git a/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/launcher/compat/EMFTVMLauncher.java b/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/launcher/compat/EMFTVMLauncher.java
index 0f8d8c9..aba3b72 100644
--- a/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/launcher/compat/EMFTVMLauncher.java
+++ b/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/launcher/compat/EMFTVMLauncher.java
@@ -24,6 +24,7 @@
 import org.eclipse.emf.ecore.resource.Resource;
 import org.eclipse.emf.ecore.resource.ResourceSet;
 import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
+import org.eclipse.m2m.atl.common.ATLLaunchConstants;
 import org.eclipse.m2m.atl.common.ATLLogger;
 import org.eclipse.m2m.atl.core.ATLCoreException;
 import org.eclipse.m2m.atl.core.IModel;
@@ -55,9 +56,6 @@
  */
 public class EMFTVMLauncher implements ILauncher {
 
-	/** The {@link ILauncher} extension name. */
-	public static final String LAUNCHER_NAME = "EMFTVM (Compatibility)"; //$NON-NLS-1$
-
 	/** The Default model factory name to use. */
 	public static final String MODEL_FACTORY_NAME = "EMF"; //$NON-NLS-1$
 
@@ -81,7 +79,7 @@
 	 * {@inheritDoc}
 	 */
 	public String getName() {
-		return LAUNCHER_NAME;
+		return ATLLaunchConstants.EMFTVM_NAME;
 	}
 
 	/**