static strings updated to "org.eclipse.wst"
diff --git a/bundles/org.eclipse.wst.xml.ui/src-wizards/org/eclipse/wst/xml/ui/internal/wizards/NamespaceInfoContentBuilder.java b/bundles/org.eclipse.wst.xml.ui/src-wizards/org/eclipse/wst/xml/ui/internal/wizards/NamespaceInfoContentBuilder.java
index a7d9e1d..9cf9811 100644
--- a/bundles/org.eclipse.wst.xml.ui/src-wizards/org/eclipse/wst/xml/ui/internal/wizards/NamespaceInfoContentBuilder.java
+++ b/bundles/org.eclipse.wst.xml.ui/src-wizards/org/eclipse/wst/xml/ui/internal/wizards/NamespaceInfoContentBuilder.java
@@ -32,7 +32,7 @@
    
     public void visitCMElementDeclaration(CMElementDeclaration ed)
     {                      
-      if (ed.getProperty("http://com.ibm.etools/cm/properties/definitionInfo") != null)
+      if (ed.getProperty("http://org.eclipse.wst/cm/properties/definitionInfo") != null)
       {
         super.visitCMElementDeclaration(ed);
       }
diff --git a/bundles/org.eclipse.wst.xml.ui/src-wizards/org/eclipse/wst/xml/ui/internal/wizards/NewXMLGenerator.java b/bundles/org.eclipse.wst.xml.ui/src-wizards/org/eclipse/wst/xml/ui/internal/wizards/NewXMLGenerator.java
index 4c70b83..56fdd8f 100644
--- a/bundles/org.eclipse.wst.xml.ui/src-wizards/org/eclipse/wst/xml/ui/internal/wizards/NewXMLGenerator.java
+++ b/bundles/org.eclipse.wst.xml.ui/src-wizards/org/eclipse/wst/xml/ui/internal/wizards/NewXMLGenerator.java
@@ -210,7 +210,7 @@
     XMLCatalog xmlCatalog = XMLCatalogPlugin.getInstance().getDefaultXMLCatalog();
     if (cmDocument != null)
     {  
-      result = (List)cmDocument.getProperty("http://com.ibm.etools/cm/properties/namespaceInfo");
+      result = (List)cmDocument.getProperty("http://org.eclipse.wst/cm/properties/namespaceInfo");
       if (result != null)
       {
         int size = result.size();
diff --git a/bundles/org.eclipse.wst.xml.ui/src-wizards/org/eclipse/wst/xml/ui/internal/wizards/NewXMLWizard.java b/bundles/org.eclipse.wst.xml.ui/src-wizards/org/eclipse/wst/xml/ui/internal/wizards/NewXMLWizard.java
index b27aade..f61fb80 100644
--- a/bundles/org.eclipse.wst.xml.ui/src-wizards/org/eclipse/wst/xml/ui/internal/wizards/NewXMLWizard.java
+++ b/bundles/org.eclipse.wst.xml.ui/src-wizards/org/eclipse/wst/xml/ui/internal/wizards/NewXMLWizard.java
@@ -616,7 +616,7 @@
               Arrays.sort(nameNodeArray, Collator.getInstance());
             }
 
-            String defaultRootName = (String) (generator.getCMDocument()).getProperty("http://com.ibm.etools/cm/properties/defaultRootName");
+            String defaultRootName = (String) (generator.getCMDocument()).getProperty("http://org.eclipse.wst/cm/properties/defaultRootName");
             int defaultRootIndex = -1;
             combo.removeAll();
 
diff --git a/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/dialogs/EditNamespaceInfoDialog.java b/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/dialogs/EditNamespaceInfoDialog.java
index 8ff59ea..400a186 100644
--- a/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/dialogs/EditNamespaceInfoDialog.java
+++ b/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/dialogs/EditNamespaceInfoDialog.java
@@ -217,7 +217,7 @@
 
 			try {
 				CMDocument document = CMPlugin.getInstance().createCMDocument(grammarURI, "xsd"); //$NON-NLS-1$
-				List namespaceInfoList = (List) document.getProperty("http://com.ibm.etools/cm/properties/namespaceInfo"); //$NON-NLS-1$
+				List namespaceInfoList = (List) document.getProperty("http://org.eclipse.wst/cm/properties/namespaceInfo"); //$NON-NLS-1$
 				NamespaceInfo info = (NamespaceInfo) namespaceInfoList.get(0);
 				if (uriField.getText().trim().length() == 0 && info.uri != null) {
 					uriField.setText(info.uri);
diff --git a/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/nsedit/CommonAddNamespacesControl.java b/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/nsedit/CommonAddNamespacesControl.java
index be8c926..2f6802a 100644
--- a/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/nsedit/CommonAddNamespacesControl.java
+++ b/bundles/org.eclipse.wst.xml.ui/src/org/eclipse/wst/xml/ui/nsedit/CommonAddNamespacesControl.java
@@ -150,7 +150,7 @@
 					//TODO CMDocument document =
 					// CMDocumentBuilderRegistry.getInstance().buildCMDocument(grammarURI);
 					//				 List namespaceInfoList =
-					// (List)document.getProperty("http://com.ibm.etools/cm/properties/namespaceInfo");
+					// (List)document.getProperty("http://org.eclipse.wst/cm/properties/namespaceInfo");
 					//				 NamespaceInfo info =
 					// (NamespaceInfo)namespaceInfoList.get(0);
 					//				 if (uriField.getText().trim().length() == 0 && info.uri