*** empty log message ***
diff --git a/deprecated/examples/org.eclipse.uml2.examples.ui/plugin.xml b/deprecated/examples/org.eclipse.uml2.examples.ui/plugin.xml
index d845f66..96d19c7 100644
--- a/deprecated/examples/org.eclipse.uml2.examples.ui/plugin.xml
+++ b/deprecated/examples/org.eclipse.uml2.examples.ui/plugin.xml
@@ -12,7 +12,7 @@
  * Contributors: 
  *   IBM - Initial API and implementation
  *
- * $Id: plugin.xml,v 1.7 2004/05/25 21:58:17 khussey Exp $
+ * $Id: plugin.xml,v 1.8 2004/06/19 02:53:36 khussey Exp $
  */
 -->
 
@@ -34,7 +34,7 @@
    <runtime>
       <library name="uml2.examples.ui.jar">
          <export name="*"/>
-         <packages prefixes="org.eclipse.uml2.examples.ui,org.eclipse.uml2.examples.ui.actions,org.eclipse.uml2.examples.ui.wizards,org.eclipse.uml2.examples.ui.wizards.ecore2uml2,org.eclipse.uml2.examples.ui.wizards.uml22ecore"/>
+         <packages prefixes="org.eclipse.uml2.examples.ui"/>
       </library>
    </runtime>
 
diff --git a/deprecated/examples/org.eclipse.uml2.examples/plugin.xml b/deprecated/examples/org.eclipse.uml2.examples/plugin.xml
index e639f9c..63c744f 100644
--- a/deprecated/examples/org.eclipse.uml2.examples/plugin.xml
+++ b/deprecated/examples/org.eclipse.uml2.examples/plugin.xml
@@ -12,7 +12,7 @@
  * Contributors: 
  *   IBM - Initial API and implementation
  *
- * $Id: plugin.xml,v 1.5 2004/05/25 21:58:16 khussey Exp $
+ * $Id: plugin.xml,v 1.6 2004/06/19 02:53:30 khussey Exp $
  */
 -->
 
@@ -32,7 +32,7 @@
    <runtime>
       <library name="uml2.examples.jar">
          <export name="*"/>
-         <packages prefixes="org.eclipse.uml2.examples,org.eclipse.uml2.examples.commands,org.eclipse.uml2.examples.ecore2uml2,org.eclipse.uml2.examples.uml22ecore"/>
+         <packages prefixes="org.eclipse.uml2.examples"/>
       </library>
    </runtime>
 
diff --git a/deprecated/plugins/org.eclipse.uml2.edit/plugin.xml b/deprecated/plugins/org.eclipse.uml2.edit/plugin.xml
index 942eabf..74e6cae 100644
--- a/deprecated/plugins/org.eclipse.uml2.edit/plugin.xml
+++ b/deprecated/plugins/org.eclipse.uml2.edit/plugin.xml
@@ -12,7 +12,7 @@
  * Contributors: 
  *   IBM - Initial API and implementation
  *
- * $Id: plugin.xml,v 1.8 2004/05/25 20:03:27 khussey Exp $
+ * $Id: plugin.xml,v 1.9 2004/06/19 02:53:34 khussey Exp $
  */
 -->
 
@@ -26,7 +26,7 @@
    <runtime>
       <library name="uml2.edit.jar">
          <export name="*"/>
-         <packages prefixes="org.eclipse.uml2.edit.internal.command,org.eclipse.uml2.edit.util,org.eclipse.uml2.provider"/>
+         <packages prefixes="org.eclipse.uml2.edit,org.eclipse.uml2.provider"/>
       </library>
    </runtime>
 
diff --git a/deprecated/plugins/org.eclipse.uml2.edit/src/org/eclipse/uml2/edit/internal/provider/UML2ItemPropertyDescriptor.java b/deprecated/plugins/org.eclipse.uml2.edit/src/org/eclipse/uml2/edit/internal/provider/UML2ItemPropertyDescriptor.java
index 03fca6a..eb1f263 100644
--- a/deprecated/plugins/org.eclipse.uml2.edit/src/org/eclipse/uml2/edit/internal/provider/UML2ItemPropertyDescriptor.java
+++ b/deprecated/plugins/org.eclipse.uml2.edit/src/org/eclipse/uml2/edit/internal/provider/UML2ItemPropertyDescriptor.java
@@ -8,7 +8,7 @@
  * Contributors:
  *   IBM - Initial API and implementation
  *
- * $Id: UML2ItemPropertyDescriptor.java,v 1.2 2004/06/18 20:30:23 khussey Exp $
+ * $Id: UML2ItemPropertyDescriptor.java,v 1.3 2004/06/19 02:53:34 khussey Exp $
  */
 package org.eclipse.uml2.edit.internal.provider;
 
@@ -41,24 +41,6 @@
 	extends ItemPropertyDescriptor {
 
 	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			String displayName, String description, EStructuralFeature feature) {
-		super(adapterFactory, displayName, description, feature);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			ResourceLocator resourceLocator, String displayName,
-			String description, EStructuralFeature feature) {
-		super(adapterFactory, resourceLocator, displayName, description,
-			feature);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			String displayName, String description, EStructuralFeature feature,
-			boolean isSettable) {
-		super(adapterFactory, displayName, description, feature, isSettable);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
 			ResourceLocator resourceLocator, String displayName,
 			String description, EStructuralFeature feature, boolean isSettable) {
 		super(adapterFactory, resourceLocator, displayName, description,
@@ -66,13 +48,6 @@
 	}
 
 	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			String displayName, String description, EStructuralFeature feature,
-			boolean isSettable, Object staticImage) {
-		super(adapterFactory, displayName, description, feature, isSettable,
-			staticImage);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
 			ResourceLocator resourceLocator, String displayName,
 			String description, EStructuralFeature feature, boolean isSettable,
 			Object staticImage) {
@@ -81,43 +56,6 @@
 	}
 
 	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			String displayName, String description, EStructuralFeature feature,
-			boolean isSettable, String category) {
-		super(adapterFactory, displayName, description, feature, isSettable,
-			category);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			ResourceLocator resourceLocator, String displayName,
-			String description, EStructuralFeature feature, boolean isSettable,
-			String category) {
-		super(adapterFactory, resourceLocator, displayName, description,
-			feature, isSettable, category);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			String displayName, String description, EStructuralFeature feature,
-			boolean isSettable, Object staticImage, String category) {
-		super(adapterFactory, displayName, description, feature, isSettable,
-			staticImage, category);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			ResourceLocator resourceLocator, String displayName,
-			String description, EStructuralFeature feature, boolean isSettable,
-			Object staticImage, String category) {
-		super(adapterFactory, resourceLocator, displayName, description,
-			feature, isSettable, staticImage, category);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			String displayName, String description, EStructuralFeature feature,
-			boolean isSettable, String category, String[] filterFlags) {
-		super(adapterFactory, displayName, description, feature, isSettable,
-			category, filterFlags);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
 			ResourceLocator resourceLocator, String displayName,
 			String description, EStructuralFeature feature, boolean isSettable,
 			String category, String[] filterFlags) {
@@ -125,81 +63,6 @@
 			feature, isSettable, category, filterFlags);
 	}
 
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			String displayName, String description, EStructuralFeature feature,
-			boolean isSettable, Object staticImage, String category,
-			String[] filterFlags) {
-		super(adapterFactory, displayName, description, feature, isSettable,
-			staticImage, category, filterFlags);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			ResourceLocator resourceLocator, String displayName,
-			String description, EStructuralFeature feature, boolean isSettable,
-			Object staticImage, String category, String[] filterFlags) {
-		super(adapterFactory, resourceLocator, displayName, description,
-			feature, isSettable, staticImage, category, filterFlags);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			String displayName, String description,
-			EReference[] parentReferences) {
-		super(adapterFactory, displayName, description, parentReferences);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			ResourceLocator resourceLocator, String displayName,
-			String description, EReference[] parentReferences) {
-		super(adapterFactory, resourceLocator, displayName, description,
-			parentReferences);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			String displayName, String description,
-			EReference[] parentReferences, boolean isSettable) {
-		super(adapterFactory, displayName, description, parentReferences,
-			isSettable);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			ResourceLocator resourceLocator, String displayName,
-			String description, EReference[] parentReferences,
-			boolean isSettable) {
-		super(adapterFactory, resourceLocator, displayName, description,
-			parentReferences, isSettable);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			String displayName, String description,
-			EReference[] parentReferences, boolean isSettable, String category) {
-		super(adapterFactory, displayName, description, parentReferences,
-			isSettable, category);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			ResourceLocator resourceLocator, String displayName,
-			String description, EReference[] parentReferences,
-			boolean isSettable, String category) {
-		super(adapterFactory, resourceLocator, displayName, description,
-			parentReferences, isSettable, category);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			String displayName, String description,
-			EReference[] parentReferences, boolean isSettable, String category,
-			String[] filterFlags) {
-		super(adapterFactory, displayName, description, parentReferences,
-			isSettable, category, filterFlags);
-	}
-
-	public UML2ItemPropertyDescriptor(AdapterFactory adapterFactory,
-			ResourceLocator resourceLocator, String displayName,
-			String description, EReference[] parentReferences,
-			boolean isSettable, String category, String[] filterFlags) {
-		super(adapterFactory, resourceLocator, displayName, description,
-			parentReferences, isSettable, category, filterFlags);
-	}
-
 	public static void collectReferenceableObjectsOfType(Collection visited,
 			Collection result, EObject object, EClassifier type) {
 
diff --git a/deprecated/plugins/org.eclipse.uml2.editor/plugin.xml b/deprecated/plugins/org.eclipse.uml2.editor/plugin.xml
index b08422a..8170688 100644
--- a/deprecated/plugins/org.eclipse.uml2.editor/plugin.xml
+++ b/deprecated/plugins/org.eclipse.uml2.editor/plugin.xml
@@ -12,7 +12,7 @@
  * Contributors: 
  *   IBM - Initial API and implementation
  *
- * $Id: plugin.xml,v 1.8 2004/05/25 20:02:56 khussey Exp $
+ * $Id: plugin.xml,v 1.9 2004/06/19 02:53:32 khussey Exp $
  */
 -->
 
@@ -34,7 +34,7 @@
    <runtime>
       <library name="uml2.editor.jar">
         <export name="*"/>
-        <packages prefixes="org.eclipse.uml2.editor.internal.presentation,org.eclipse.uml2.presentation"/>
+        <packages prefixes="org.eclipse.uml2.editor,org.eclipse.uml2.presentation"/>
       </library>
    </runtime>
 
diff --git a/deprecated/plugins/org.eclipse.uml2/plugin.xml b/deprecated/plugins/org.eclipse.uml2/plugin.xml
index ef27b85..52dec32 100644
--- a/deprecated/plugins/org.eclipse.uml2/plugin.xml
+++ b/deprecated/plugins/org.eclipse.uml2/plugin.xml
@@ -12,7 +12,7 @@
  * Contributors: 
  *   IBM - Initial API and implementation
  *
- * $Id: plugin.xml,v 1.9 2004/05/25 20:05:08 khussey Exp $
+ * $Id: plugin.xml,v 1.10 2004/06/19 02:53:39 khussey Exp $
  */
 -->
 
@@ -26,7 +26,7 @@
    <runtime>
       <library name="uml2.jar">
          <export name="*"/>
-         <packages prefixes="org.eclipse.uml2,org.eclipse.uml2.impl,org.eclipse.uml2.internal.operation,org.eclipse.uml2.internal.util,org.eclipse.uml2.util"/>
+         <packages prefixes="org.eclipse.uml2"/>
       </library>
    </runtime>