[95483 update resource strings]
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/AbstractCommand.java b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/AbstractCommand.java
index 282efe0..151f79d 100644
--- a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/AbstractCommand.java
+++ b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/AbstractCommand.java
@@ -12,7 +12,7 @@
  *
  * </copyright>
  *
- * $Id: AbstractCommand.java,v 1.2 2005/05/17 18:23:07 nitind Exp $
+ * $Id: AbstractCommand.java,v 1.3 2005/06/06 05:36:11 david_williams Exp $
  */
 package org.eclipse.emf.common.command;
 
@@ -138,7 +138,7 @@
 	 *                always.
 	 */
 	public void undo() {
-		throw new RuntimeException(NLS.bind(EMFCommonMessages._EXC_Method_not_implemented, this.getClass().getName() + ".undo()")); //$NON-NLS-1$
+		throw new RuntimeException(NLS.bind(UnDoCommonMessages._EXC_Method_not_implemented, this.getClass().getName() + ".undo()")); //$NON-NLS-1$
 	}
 
 	/**
@@ -163,7 +163,7 @@
 	 * Javadoc copied from interface.
 	 */
 	public String getLabel() {
-		return label == null ? EMFCommonMessages._UI_AbstractCommand_label : label;
+		return label == null ? UnDoCommonMessages._UI_AbstractCommand_label : label;
 	}
 
 	/**
@@ -180,7 +180,7 @@
 	 * Javadoc copied from interface.
 	 */
 	public String getDescription() {
-		return description == null ? EMFCommonMessages._UI_AbstractCommand_description : description;
+		return description == null ? UnDoCommonMessages._UI_AbstractCommand_description : description;
 	}
 
 	/**
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/BasicCommandStack.java b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/BasicCommandStack.java
index d39f808..064efda 100644
--- a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/BasicCommandStack.java
+++ b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/BasicCommandStack.java
@@ -12,7 +12,7 @@
  *
  * </copyright>
  *
- * $Id: BasicCommandStack.java,v 1.2 2005/05/17 18:23:07 nitind Exp $
+ * $Id: BasicCommandStack.java,v 1.3 2005/06/06 05:36:11 david_williams Exp $
  */
 package org.eclipse.emf.common.command;
 
@@ -244,7 +244,7 @@
 	 * the plugin.
 	 */
 	protected void handleError(Exception exception) {
-		Logger.logException(EMFCommonMessages._UI_IgnoreException_exception, exception);
+		Logger.logException(UnDoCommonMessages._UI_IgnoreException_exception, exception);
 	}
 
 	/**
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/CommandWrapper.java b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/CommandWrapper.java
index 7e7dbe7..2b8f137 100644
--- a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/CommandWrapper.java
+++ b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/CommandWrapper.java
@@ -12,7 +12,7 @@
  *
  * </copyright>
  *
- * $Id: CommandWrapper.java,v 1.2 2005/05/17 18:23:07 nitind Exp $
+ * $Id: CommandWrapper.java,v 1.3 2005/06/06 05:36:11 david_williams Exp $
  */
 package org.eclipse.emf.common.command;
 
@@ -234,7 +234,7 @@
 	 * @return the label.
 	 */
 	public String getLabel() {
-		return label == null ? command == null ? EMFCommonMessages._UI_CommandWrapper_label : command.getLabel() : label;
+		return label == null ? command == null ? UnDoCommonMessages._UI_CommandWrapper_label : command.getLabel() : label;
 	}
 
 	/**
@@ -243,7 +243,7 @@
 	 * @return the description.
 	 */
 	public String getDescription() {
-		return description == null ? command == null ? EMFCommonMessages._UI_CommandWrapper_description : command.getDescription() : description;
+		return description == null ? command == null ? UnDoCommonMessages._UI_CommandWrapper_description : command.getDescription() : description;
 	}
 
 	/**
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/CompoundCommand.java b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/CompoundCommand.java
index c959ccc..c691646 100644
--- a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/CompoundCommand.java
+++ b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/CompoundCommand.java
@@ -12,7 +12,7 @@
  *
  * </copyright>
  *
- * $Id: CompoundCommand.java,v 1.2 2005/05/17 18:23:07 nitind Exp $
+ * $Id: CompoundCommand.java,v 1.3 2005/06/06 05:36:11 david_williams Exp $
  */
 package org.eclipse.emf.common.command;
 
@@ -307,7 +307,7 @@
 					}
 				}
 				catch (RuntimeException nestedException) {
-					Logger.logException(EMFCommonMessages._UI_IgnoreException_exception, nestedException);
+					Logger.logException(UnDoCommonMessages._UI_IgnoreException_exception, nestedException);
 				}
 
 				throw exception;
@@ -357,7 +357,7 @@
 					}
 				}
 				catch (RuntimeException nestedException) {
-					Logger.logException(EMFCommonMessages._UI_IgnoreException_exception, exception);
+					Logger.logException(UnDoCommonMessages._UI_IgnoreException_exception, exception);
 				}
 
 
@@ -389,7 +389,7 @@
 					}
 				}
 				catch (RuntimeException nestedException) {
-					Logger.logException(EMFCommonMessages._UI_IgnoreException_exception, nestedException);
+					Logger.logException(UnDoCommonMessages._UI_IgnoreException_exception, nestedException);
 				}
 
 				throw exception;
@@ -490,7 +490,7 @@
 			return label;
 		}
 		else if (commandList.isEmpty()) {
-			return EMFCommonMessages._UI_CompoundCommand_label;
+			return UnDoCommonMessages._UI_CompoundCommand_label;
 		}
 		else if (resultIndex == LAST_COMMAND_ALL || resultIndex == MERGE_COMMAND_ALL) {
 			return ((Command) commandList.get(commandList.size() - 1)).getLabel();
@@ -499,7 +499,7 @@
 			return ((Command) commandList.get(resultIndex)).getLabel();
 		}
 		else {
-			return EMFCommonMessages._UI_CompoundCommand_label;
+			return UnDoCommonMessages._UI_CompoundCommand_label;
 		}
 	}
 
@@ -515,7 +515,7 @@
 			return description;
 		}
 		else if (commandList.isEmpty()) {
-			return EMFCommonMessages._UI_CompoundCommand_description;
+			return UnDoCommonMessages._UI_CompoundCommand_description;
 		}
 		else if (resultIndex == LAST_COMMAND_ALL || resultIndex == MERGE_COMMAND_ALL) {
 			return ((Command) commandList.get(commandList.size() - 1)).getDescription();
@@ -524,7 +524,7 @@
 			return ((Command) commandList.get(resultIndex)).getDescription();
 		}
 		else {
-			return EMFCommonMessages._UI_CompoundCommand_description;
+			return UnDoCommonMessages._UI_CompoundCommand_description;
 		}
 	}
 
@@ -622,7 +622,7 @@
 					return true;
 				}
 				catch (RuntimeException exception) {
-					Logger.logException(EMFCommonMessages._UI_IgnoreException_exception, exception);
+					Logger.logException(UnDoCommonMessages._UI_IgnoreException_exception, exception);
 				}
 			}
 
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/IdentityCommand.java b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/IdentityCommand.java
index 5dba093..ced8250 100644
--- a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/IdentityCommand.java
+++ b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/IdentityCommand.java
@@ -12,7 +12,7 @@
  *
  * </copyright>
  *
- * $Id: IdentityCommand.java,v 1.2 2005/05/17 18:23:07 nitind Exp $
+ * $Id: IdentityCommand.java,v 1.3 2005/06/06 05:36:11 david_williams Exp $
  */
 package org.eclipse.emf.common.command;
 
@@ -191,14 +191,14 @@
 	 * Javadoc copied from base class.
 	 */
 	public String getLabel() {
-		return label == null ? EMFCommonMessages._UI_IdentityCommand_label : label;
+		return label == null ? UnDoCommonMessages._UI_IdentityCommand_label : label;
 	}
 
 	/*
 	 * Javadoc copied from base class.
 	 */
 	public String getDescription() {
-		return description == null ? EMFCommonMessages._UI_IdentityCommand_description : description;
+		return description == null ? UnDoCommonMessages._UI_IdentityCommand_description : description;
 	}
 
 	/**
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/StrictCompoundCommand.java b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/StrictCompoundCommand.java
index 7a1d362..2b401ef 100644
--- a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/StrictCompoundCommand.java
+++ b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/StrictCompoundCommand.java
@@ -12,7 +12,7 @@
  *
  * </copyright>
  *
- * $Id: StrictCompoundCommand.java,v 1.2 2005/05/17 18:23:07 nitind Exp $
+ * $Id: StrictCompoundCommand.java,v 1.3 2005/06/06 05:36:11 david_williams Exp $
  */
 package org.eclipse.emf.common.command;
 
@@ -197,7 +197,7 @@
 								}
 							}
 							catch (RuntimeException exception) {
-								Logger.logException(EMFCommonMessages._UI_IgnoreException_exception, exception);
+								Logger.logException(UnDoCommonMessages._UI_IgnoreException_exception, exception);
 
 								result = false;
 								break;
@@ -402,7 +402,7 @@
 					return true;
 				}
 				catch (RuntimeException exception) {
-					Logger.logException(EMFCommonMessages._UI_IgnoreException_exception, exception);
+					Logger.logException(UnDoCommonMessages._UI_IgnoreException_exception, exception);
 				}
 			}
 
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/EMFCommonMessages.java b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/UnDoCommonMessages.java
similarity index 88%
rename from bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/EMFCommonMessages.java
rename to bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/UnDoCommonMessages.java
index 3d46a18..a5e5a9b 100644
--- a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/EMFCommonMessages.java
+++ b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/UnDoCommonMessages.java
@@ -15,15 +15,15 @@
 /**
  * 
  */
-class EMFCommonMessages extends NLS {
-	private static final String BUNDLE_NAME = "org.eclipse.emf.common.command.EMFCommonResources"; //$NON-NLS-1$
+class UnDoCommonMessages extends NLS {
+	private static final String BUNDLE_NAME = "org.eclipse.emf.common.command.UnDoCommonResources"; //$NON-NLS-1$
 
-	private EMFCommonMessages() {
+	private UnDoCommonMessages() {
 	}
 
 	static {
 		// initialize resource bundle
-		NLS.initializeMessages(BUNDLE_NAME, EMFCommonMessages.class);
+		NLS.initializeMessages(BUNDLE_NAME, UnDoCommonMessages.class);
 	}
 	public static String _UI_UnexecutableCommand_label;
 	public static String _UI_UnexecutableCommand_description;
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/EMFCommonResources.properties b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/UndoCommonResources.properties
similarity index 100%
rename from bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/EMFCommonResources.properties
rename to bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/UndoCommonResources.properties
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/UnexecutableCommand.java b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/UnexecutableCommand.java
index b65412d..cd87ee9 100644
--- a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/UnexecutableCommand.java
+++ b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/emf/common/command/UnexecutableCommand.java
@@ -12,7 +12,7 @@
  *
  * </copyright>
  *
- * $Id: UnexecutableCommand.java,v 1.2 2005/05/17 18:23:07 nitind Exp $
+ * $Id: UnexecutableCommand.java,v 1.3 2005/06/06 05:36:11 david_williams Exp $
  */
 package org.eclipse.emf.common.command;
 
@@ -31,7 +31,7 @@
 	 * Only one private instance is created.
 	 */
 	private UnexecutableCommand() {
-		super(EMFCommonMessages._UI_UnexecutableCommand_label, EMFCommonMessages._UI_UnexecutableCommand_description);
+		super(UnDoCommonMessages._UI_UnexecutableCommand_label, UnDoCommonMessages._UI_UnexecutableCommand_description);
 	}
 
 	/**