Refactor this example to use org.eclipse.objectteams names (src and .project).
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/.project b/othersrc/otdt-examples/OTSample-ordersystem-src/.project
index 76279e9..a438944 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/.project
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/.project
@@ -6,13 +6,13 @@
 	</projects>
 	<buildSpec>
 		<buildCommand>
-			<name>org.objectteams.otdt.builder.OTJBuilder</name>
+			<name>org.eclipse.objectteams.otdt.builder.OTJBuilder</name>
 			<arguments>
 			</arguments>
 		</buildCommand>
 	</buildSpec>
 	<natures>
-		<nature>org.objectteams.otdt.OTJavaNature</nature>
+		<nature>org.eclipse.objectteams.otdt.OTJavaNature</nature>
 		<nature>org.eclipse.jdt.core.javanature</nature>
 	</natures>
 </projectDescription>
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/Intro0.html b/othersrc/otdt-examples/OTSample-ordersystem-src/Intro0.html
index f37851b..c372b78 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/Intro0.html
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/Intro0.html
@@ -65,7 +65,7 @@
 In order to see the full functionality enter the following information to the launch configuration:
 <table padding=3 border=1>
 <tr><td colspan=2><b>Tab <img src="images/class_public.gif"> Main</b>
-<tr><td>Main class<td><code>org.objectteams.samples.ordersystem.gui.GUITest</code>
+<tr><td>Main class<td><code>org.eclipse.objectteams.samples.ordersystem.gui.GUITest</code>
 <tr><td colspan=2><b>Tab <img src="images/team_obj.gif"> Team Activation</b>
 <tr><td>Add:	<td><code>ModelAdapterTeam</code><br />
 				    <code>ControllerAdapterTeam</code><br />
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/Main.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/Main.java
similarity index 95%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/Main.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/Main.java
index 9db247f..ff80fd9 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/Main.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/Main.java
@@ -14,12 +14,12 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem;
+package org.eclipse.objectteams.samples.ordersystem;
 
-import org.objectteams.samples.ordersystem.data.*;
-import org.objectteams.samples.ordersystem.order.StockOrder;
-import org.objectteams.samples.ordersystem.reservation.StockReservations;
-import org.objectteams.samples.ordersystem.store.*;
+import org.eclipse.objectteams.samples.ordersystem.data.*;
+import org.eclipse.objectteams.samples.ordersystem.order.StockOrder;
+import org.eclipse.objectteams.samples.ordersystem.reservation.StockReservations;
+import org.eclipse.objectteams.samples.ordersystem.store.*;
 
 /**
  * Object Teams features demonstrated by this example:
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/data/Address.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/data/Address.java
similarity index 97%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/data/Address.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/data/Address.java
index 5ee6471..1e99bd8 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/data/Address.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/data/Address.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.data;
+package org.eclipse.objectteams.samples.ordersystem.data;
 
 /**
  * @author Dehla
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/data/Customer.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/data/Customer.java
similarity index 96%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/data/Customer.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/data/Customer.java
index 2f3c0a7..a778e88 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/data/Customer.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/data/Customer.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.data;
+package org.eclipse.objectteams.samples.ordersystem.data;
 
 /**
  * @author Dehla
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/AbstractTableModelTemplate.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/AbstractTableModelTemplate.java
similarity index 96%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/AbstractTableModelTemplate.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/AbstractTableModelTemplate.java
index 36e0279..9c9d12a 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/AbstractTableModelTemplate.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/AbstractTableModelTemplate.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.gui;
+package org.eclipse.objectteams.samples.ordersystem.gui;
 
 import java.util.Vector;
 
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/ButtonListLayout.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/ButtonListLayout.java
similarity index 99%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/ButtonListLayout.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/ButtonListLayout.java
index 3fc5492..2c88d73 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/ButtonListLayout.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/ButtonListLayout.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.gui;
+package org.eclipse.objectteams.samples.ordersystem.gui;
 
 import java.awt.Component;
 import java.awt.Container;
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/ControllerAdapterTeam.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/ControllerAdapterTeam.java
similarity index 96%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/ControllerAdapterTeam.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/ControllerAdapterTeam.java
index c3b9084..b5e857d 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/ControllerAdapterTeam.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/ControllerAdapterTeam.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.gui;
+package org.eclipse.objectteams.samples.ordersystem.gui;
 
 import java.awt.event.ActionEvent;
 import java.awt.event.ActionListener;
@@ -23,11 +23,11 @@
 import javax.swing.JButton;
 import javax.swing.JTable;
 
+import org.eclipse.objectteams.samples.ordersystem.data.Customer;
+import org.eclipse.objectteams.samples.ordersystem.order.StockOrder;
+import org.eclipse.objectteams.samples.ordersystem.store.StockItem;
+import org.eclipse.objectteams.samples.ordersystem.store.Storage;
 import org.objectteams.Team;
-import org.objectteams.samples.ordersystem.data.Customer;
-import org.objectteams.samples.ordersystem.order.StockOrder;
-import org.objectteams.samples.ordersystem.store.StockItem;
-import org.objectteams.samples.ordersystem.store.Storage;
 
 /**
  * @author Dehla Sokenou
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/GUIAdapterTeam.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/GUIAdapterTeam.java
similarity index 97%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/GUIAdapterTeam.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/GUIAdapterTeam.java
index 50098d7..5670330 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/GUIAdapterTeam.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/GUIAdapterTeam.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.gui;
+package org.eclipse.objectteams.samples.ordersystem.gui;
 
 import java.awt.Container;
 import java.awt.Dimension;
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/GUITest.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/GUITest.java
similarity index 94%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/GUITest.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/GUITest.java
index fade166..704a8e4 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/GUITest.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/GUITest.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.gui;
+package org.eclipse.objectteams.samples.ordersystem.gui;
 
 
 public class GUITest {
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/InputDialog.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/InputDialog.java
similarity index 98%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/InputDialog.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/InputDialog.java
index 0287391..783203a 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/InputDialog.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/InputDialog.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.gui;
+package org.eclipse.objectteams.samples.ordersystem.gui;
 
 import java.awt.BorderLayout;
 import java.awt.Color;
@@ -38,10 +38,10 @@
 import javax.swing.JScrollPane;
 import javax.swing.JTextField;
 
-import org.objectteams.samples.ordersystem.data.Address;
-import org.objectteams.samples.ordersystem.data.Customer;
-import org.objectteams.samples.ordersystem.order.StockOrder;
-import org.objectteams.samples.ordersystem.store.StockItem;
+import org.eclipse.objectteams.samples.ordersystem.data.Address;
+import org.eclipse.objectteams.samples.ordersystem.data.Customer;
+import org.eclipse.objectteams.samples.ordersystem.order.StockOrder;
+import org.eclipse.objectteams.samples.ordersystem.store.StockItem;
 
 
 
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/ModelAdapterTeam.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/ModelAdapterTeam.java
similarity index 92%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/ModelAdapterTeam.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/ModelAdapterTeam.java
index 6a251d2..069b7a2 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/ModelAdapterTeam.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/ModelAdapterTeam.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.gui;
+package org.eclipse.objectteams.samples.ordersystem.gui;
 
 import java.awt.Component;
 import java.util.HashMap;
@@ -28,15 +28,15 @@
 import javax.swing.table.DefaultTableCellRenderer;
 import javax.swing.table.TableColumn;
 
+import org.eclipse.objectteams.samples.ordersystem.data.Address;
+import org.eclipse.objectteams.samples.ordersystem.data.Customer;
+import org.eclipse.objectteams.samples.ordersystem.order.StockOrder;
+import org.eclipse.objectteams.samples.ordersystem.reservation.Reservations;
+import org.eclipse.objectteams.samples.ordersystem.store.StockItem;
 import org.objectteams.Team;
-import org.objectteams.samples.ordersystem.data.Address;
-import org.objectteams.samples.ordersystem.order.StockOrder;
-import org.objectteams.samples.ordersystem.reservation.Reservations;
-import org.objectteams.samples.ordersystem.store.StockItem;
 
-import org.objectteams.samples.ordersystem.data.Customer;
-import base org.objectteams.samples.ordersystem.reservation.StockReservations;
-import base org.objectteams.samples.ordersystem.store.Storage;
+import base org.eclipse.objectteams.samples.ordersystem.reservation.StockReservations;
+import base org.eclipse.objectteams.samples.ordersystem.store.Storage;
 
 
 
@@ -319,7 +319,7 @@
                                    };
         
         /**
-         * @see org.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getColumnNames()
+         * @see org.eclipse.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getColumnNames()
          */
         protected String[] getColumnNames() {
             return columnNames;
@@ -346,7 +346,7 @@
         }
         
         /**
-         * @see org.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getElements()
+         * @see org.eclipse.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getElements()
          */
         // Note: abstract method is implemented using callout binding:
         @SuppressWarnings("decapsulation")
@@ -376,14 +376,14 @@
         protected Vector<Customer> elements = new Vector<Customer>();
         
         /**
-         * @see org.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getColumnNames()
+         * @see org.eclipse.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getColumnNames()
          */
         protected String[] getColumnNames() {
             return columnNames;
         }
 
         /**
-         * @see org.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getValueAt(int, int)
+         * @see org.eclipse.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getValueAt(int, int)
          */
         public Object getValueAt(int aRowIndex, int aColumnIndex) {
             Vector<Customer> tempElements = getElements();
@@ -408,7 +408,7 @@
         }
         
         /**
-         * @see org.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getElements()
+         * @see org.eclipse.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getElements()
          */
         public Vector<Customer> getElements() {
             return elements;
@@ -474,21 +474,21 @@
 		ReservationAdapter theInstance() -> StockReservations theInstance();		
         
         /**
-         * @see org.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getColumnNames()
+         * @see org.eclipse.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getColumnNames()
          */
         protected String[] getColumnNames() {
             return columnNames;
         }
 
         /**
-         * @see org.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getElements()
+         * @see org.eclipse.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getElements()
          */
         public Vector<StockItem> getElements() {
 			return getStorageAdapter().getElements();
         }
 
         /**
-         * @see org.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getValueAt(int, int)
+         * @see org.eclipse.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getValueAt(int, int)
          */
         public Object getValueAt(int aRowIndex, int aColumnIndex) {
             Vector<StockItem> tempElements = getElements();
@@ -536,21 +536,21 @@
            };
         
         /**
-         * @see org.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getColumnNames()
+         * @see org.eclipse.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getColumnNames()
          */
         protected String[] getColumnNames() {
             return columnNames;
         }
         
         /**
-         * @see org.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getElements()
+         * @see org.eclipse.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getElements()
          */
         public Vector<StockOrder> getElements() {
             return elements;
         }
 
         /**
-         * @see org.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getValueAt(int, int)
+         * @see org.eclipse.objectteams.samples.ordersystem.gui.AbstractTableModelTemplate#getValueAt(int, int)
          */
         public Object getValueAt(int aRowIndex, int aColumnIndex) {
             return getElements().elementAt(aRowIndex).toString();
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/OrderSystemMainFrame.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/OrderSystemMainFrame.java
similarity index 98%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/OrderSystemMainFrame.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/OrderSystemMainFrame.java
index 9e4a436..2422420 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/OrderSystemMainFrame.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/OrderSystemMainFrame.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.gui;
+package org.eclipse.objectteams.samples.ordersystem.gui;
 
 import java.awt.BorderLayout;
 import java.awt.Component;
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/Tab.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/Tab.java
similarity index 93%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/Tab.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/Tab.java
index ee585a8..9360538 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/gui/Tab.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/gui/Tab.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.gui;
+package org.eclipse.objectteams.samples.ordersystem.gui;
 
 /**
  * Enum representing actual foreground tab.
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/order/Order.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/order/Order.java
similarity index 99%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/order/Order.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/order/Order.java
index ed02175..a448290 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/order/Order.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/order/Order.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.order;
+package org.eclipse.objectteams.samples.ordersystem.order;
 
 import java.util.LinkedList;
 import java.util.Iterator;
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/order/StockOrder.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/order/StockOrder.java
similarity index 91%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/order/StockOrder.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/order/StockOrder.java
index 96cb3c9..e7ec103 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/order/StockOrder.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/order/StockOrder.java
@@ -14,13 +14,13 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.order;
+package org.eclipse.objectteams.samples.ordersystem.order;
 
-import org.objectteams.samples.ordersystem.reservation.StockReservations;
+import org.eclipse.objectteams.samples.ordersystem.reservation.StockReservations;
 
-import base org.objectteams.samples.ordersystem.data.Customer;
-import base org.objectteams.samples.ordersystem.data.Address;
-import base org.objectteams.samples.ordersystem.store.StockItem;
+import base org.eclipse.objectteams.samples.ordersystem.data.Customer;
+import base org.eclipse.objectteams.samples.ordersystem.data.Address;
+import base org.eclipse.objectteams.samples.ordersystem.store.StockItem;
 
 /**
  * The team <code>StockOrder</code> is a specialization of the <code>Order</code>. 
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/reservation/Reservations.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/reservation/Reservations.java
similarity index 98%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/reservation/Reservations.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/reservation/Reservations.java
index aaeb721..63513e9 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/reservation/Reservations.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/reservation/Reservations.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.reservation;
+package org.eclipse.objectteams.samples.ordersystem.reservation;
 
 /**
  * This is a team implementation for a simple reservation system.
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/reservation/StockReservations.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/reservation/StockReservations.java
similarity index 95%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/reservation/StockReservations.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/reservation/StockReservations.java
index 2f885ab..a801daf 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/reservation/StockReservations.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/reservation/StockReservations.java
@@ -14,9 +14,9 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.reservation;
+package org.eclipse.objectteams.samples.ordersystem.reservation;
 
-import base org.objectteams.samples.ordersystem.store.StockItem;
+import base org.eclipse.objectteams.samples.ordersystem.store.StockItem;
 
 /**
  * Team class <code>StockReservations</code> extends the abstract team class <code>Reservations</code>
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/store/StockItem.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/store/StockItem.java
similarity index 97%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/store/StockItem.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/store/StockItem.java
index 59c8edb..e25e868 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/store/StockItem.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/store/StockItem.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.store;
+package org.eclipse.objectteams.samples.ordersystem.store;
 
 /**
  * This is a simple implementation of a stock item. It contains the name of the item,
diff --git a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/store/Storage.java b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/store/Storage.java
similarity index 97%
rename from othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/store/Storage.java
rename to othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/store/Storage.java
index e606671..521e871 100644
--- a/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/objectteams/samples/ordersystem/store/Storage.java
+++ b/othersrc/otdt-examples/OTSample-ordersystem-src/src/org/eclipse/objectteams/samples/ordersystem/store/Storage.java
@@ -14,7 +14,7 @@
  * Contributors:
  * 	  Technical University Berlin - Initial API and implementation
  **********************************************************************/
-package org.objectteams.samples.ordersystem.store;
+package org.eclipse.objectteams.samples.ordersystem.store;
 
 import java.util.HashMap;
 import java.util.Iterator;
diff --git a/plugins/org.eclipse.objectteams.otdt.samples/samples/ordersystem.zip b/plugins/org.eclipse.objectteams.otdt.samples/samples/ordersystem.zip
index 5339516..69974db 100644
--- a/plugins/org.eclipse.objectteams.otdt.samples/samples/ordersystem.zip
+++ b/plugins/org.eclipse.objectteams.otdt.samples/samples/ordersystem.zip
Binary files differ