From 911c396e6b99973f5dc2339eab71baeb2a2c7b79 Mon Sep 17 00:00:00 2001
From: Florian Hoelzl <hoelzl@fortiss.org>
Date: Mon, 31 Jan 2011 09:49:43 +0000
Subject: [PATCH] fixed class header comments added
 tooling.compatibility.ccts_feature added tooling.base plugin

---
 .../tooling/base/ToolingBaseActivator.java    | 28 +++++++++++++++----
 .../kernel/ToolingKernelActivator.java        | 22 +++++++++++++++
 .../interfaces/ICommandStackService.java      |  4 +--
 .../kernel/interfaces/ICompositorService.java |  4 +--
 .../kernel/interfaces/IConnectorService.java  |  4 +--
 .../kernel/interfaces/IConstraintService.java |  4 +--
 .../interfaces/IContextMenuService.java       |  4 +--
 .../kernel/interfaces/IEditorService.java     |  4 +--
 .../kernel/interfaces/IExecutionService.java  |  4 +--
 .../kernel/interfaces/ILibraryService.java    |  4 +--
 .../kernel/interfaces/IMarkerService.java     |  4 +--
 .../interfaces/IModelElementService.java      |  4 +--
 .../kernel/interfaces/IMultiUserService.java  |  4 +--
 .../kernel/interfaces/INavigatorService.java  |  4 +--
 .../interfaces/IPersistencyService.java       |  4 +--
 .../kernel/interfaces/IPropertiesService.java |  4 +--
 .../kernel/interfaces/IPrototypeService.java  |  4 +--
 .../interfaces/ITransformationService.java    |  4 +--
 .../kernel/internal/CommandStackService.java  |  4 +--
 .../kernel/internal/CompositorService.java    |  4 +--
 .../kernel/internal/ConnectorService.java     |  4 +--
 .../kernel/internal/ConstraintService.java    |  4 +--
 .../kernel/internal/ContextMenuService.java   |  4 +--
 .../kernel/internal/EditorService.java        |  4 +--
 .../kernel/internal/ExecutionService.java     |  4 +--
 .../kernel/internal/LibraryService.java       |  4 +--
 .../kernel/internal/MarkerService.java        |  4 +--
 .../kernel/internal/ModelElementService.java  |  4 +--
 .../kernel/internal/MultiUserService.java     |  4 +--
 .../kernel/internal/NavigatorService.java     |  4 +--
 .../kernel/internal/PersistencyService.java   |  4 +--
 .../kernel/internal/PropertiesService.java    |  4 +--
 .../kernel/internal/PrototypeService.java     |  4 +--
 .../kernel/internal/ServiceManager.java       |  5 ++--
 .../internal/TransformationService.java       |  4 +--
 35 files changed, 111 insertions(+), 72 deletions(-)

diff --git a/org.fortiss.tooling.base/trunk/src/org/fortiss/tooling/base/ToolingBaseActivator.java b/org.fortiss.tooling.base/trunk/src/org/fortiss/tooling/base/ToolingBaseActivator.java
index 20b88d16c..ca1b4c8fc 100644
--- a/org.fortiss.tooling.base/trunk/src/org/fortiss/tooling/base/ToolingBaseActivator.java
+++ b/org.fortiss.tooling.base/trunk/src/org/fortiss/tooling/base/ToolingBaseActivator.java
@@ -1,14 +1,32 @@
-/**
- * 
- */
+/*--------------------------------------------------------------------------+
+$Id$
+|                                                                          |
+| Copyright 2011 ForTISS GmbH                                              |
+|                                                                          |
+| Licensed under the Apache License, Version 2.0 (the "License");          |
+| you may not use this file except in compliance with the License.         |
+| You may obtain a copy of the License at                                  |
+|                                                                          |
+|    http://www.apache.org/licenses/LICENSE-2.0                            |
+|                                                                          |
+| Unless required by applicable law or agreed to in writing, software      |
+| distributed under the License is distributed on an "AS IS" BASIS,        |
+| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
+| See the License for the specific language governing permissions and      |
+| limitations under the License.                                           |
++--------------------------------------------------------------------------*/
 package org.fortiss.tooling.base;
 
 import org.eclipse.ui.plugin.AbstractUIPlugin;
 import org.osgi.framework.BundleContext;
 
 /**
- * @author hoelzlf
- *
+ * The activator class controls the plug-in life cycle.
+ * 
+ * @author hoelzl
+ * @author $Author$
+ * @version $Rev$
+ * @levd.rating RED Rev:
  */
 public class ToolingBaseActivator extends AbstractUIPlugin {
 
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/ToolingKernelActivator.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/ToolingKernelActivator.java
index 674382a7b..119eb71c2 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/ToolingKernelActivator.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/ToolingKernelActivator.java
@@ -1,3 +1,20 @@
+/*--------------------------------------------------------------------------+
+$Id$
+|                                                                          |
+| Copyright 2011 ForTISS GmbH                                              |
+|                                                                          |
+| Licensed under the Apache License, Version 2.0 (the "License");          |
+| you may not use this file except in compliance with the License.         |
+| You may obtain a copy of the License at                                  |
+|                                                                          |
+|    http://www.apache.org/licenses/LICENSE-2.0                            |
+|                                                                          |
+| Unless required by applicable law or agreed to in writing, software      |
+| distributed under the License is distributed on an "AS IS" BASIS,        |
+| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
+| See the License for the specific language governing permissions and      |
+| limitations under the License.                                           |
++--------------------------------------------------------------------------*/
 package org.fortiss.tooling.kernel;
 
 import org.eclipse.ui.plugin.AbstractUIPlugin;
@@ -6,6 +23,11 @@ import org.osgi.framework.BundleContext;
 
 /**
  * The activator class controls the plug-in life cycle.
+ * 
+ * @author hoelzl
+ * @author $Author$
+ * @version $Rev$
+ * @levd.rating RED Rev:
  */
 public class ToolingKernelActivator extends AbstractUIPlugin {
 
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ICommandStackService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ICommandStackService.java
index 4d8eff91d..83db7e8bc 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ICommandStackService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ICommandStackService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -23,7 +23,7 @@ import org.fortiss.tooling.kernel.internal.CommandStackService;
  * The command stack service manages the access to the command stack and editing
  * domain.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ICompositorService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ICompositorService.java
index f4954cdbd..08f2ccbc7 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ICompositorService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ICompositorService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -23,7 +23,7 @@ import org.fortiss.tooling.kernel.internal.CompositorService;
  * The compositor service provides registration and access to model element
  * compositors.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IConnectorService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IConnectorService.java
index fe4915c19..39d1b8fb2 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IConnectorService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IConnectorService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -23,7 +23,7 @@ import org.fortiss.tooling.kernel.internal.ConnectorService;
  * The connector service provides registration and access to model element
  * connectors.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IConstraintService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IConstraintService.java
index ec08e612b..33ca2f17f 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IConstraintService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IConstraintService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -23,7 +23,7 @@ import org.fortiss.tooling.kernel.internal.ConstraintService;
  * The constraint service manages registration and execution of model element
  * constraints.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IContextMenuService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IContextMenuService.java
index 851d7717a..09d7edd51 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IContextMenuService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IContextMenuService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -23,7 +23,7 @@ import org.fortiss.tooling.kernel.internal.ContextMenuService;
  * The context menu service allows registration for model element specific
  * context menus.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IEditorService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IEditorService.java
index b5f1bf26b..a378a0953 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IEditorService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IEditorService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.internal.EditorService;
 /**
  * The editor service handles editor registration and double-click support
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IExecutionService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IExecutionService.java
index 62e2a2516..1af907c54 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IExecutionService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IExecutionService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -23,7 +23,7 @@ import org.fortiss.tooling.kernel.internal.ExecutionService;
  * This service provides run configurations and target execution for specific
  * model elements and execution targets.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ILibraryService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ILibraryService.java
index 81cb3e5fe..53eda3d23 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ILibraryService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ILibraryService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -24,7 +24,7 @@ import org.fortiss.tooling.kernel.internal.LibraryService;
  * view. It gathers elements from prototypes and the common and user specific
  * model library.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IMarkerService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IMarkerService.java
index 93e9bcf19..6ec27d520 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IMarkerService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IMarkerService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.internal.MarkerService;
 /**
  * The marker service manages model element specific markers.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IModelElementService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IModelElementService.java
index e25afc5e2..3f3b04c42 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IModelElementService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IModelElementService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -23,7 +23,7 @@ import org.fortiss.tooling.kernel.internal.ModelElementService;
  * The model context service provides information about registered model
  * elements.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IMultiUserService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IMultiUserService.java
index 4bf57585e..c90a2befe 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IMultiUserService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IMultiUserService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -23,7 +23,7 @@ import org.fortiss.tooling.kernel.internal.MultiUserService;
  * This service provides support for multi-user environments. This service is
  * only active for EMFStore based repsoitories.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/INavigatorService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/INavigatorService.java
index e4b7cb647..2eb49f521 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/INavigatorService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/INavigatorService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.internal.NavigatorService;
 /**
  * The navigator service provides model navigation support.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IPersistencyService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IPersistencyService.java
index 23a1d7ec3..d86a569b1 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IPersistencyService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IPersistencyService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -23,7 +23,7 @@ import org.fortiss.tooling.kernel.internal.PersistencyService;
  * The persistency service provides the access to the different persistency
  * options, namely an EMFStore or local XML files within an Eclipse project.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IPropertiesService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IPropertiesService.java
index 8a490e0d5..e793c34a5 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IPropertiesService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IPropertiesService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.internal.PropertiesService;
 /**
  * The properties service manages model element specific properties.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IPrototypeService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IPrototypeService.java
index 7444acaf1..a28b8a6c3 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IPrototypeService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/IPrototypeService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -23,7 +23,7 @@ import org.fortiss.tooling.kernel.internal.PrototypeService;
  * The prototype service provides registration and access to model element
  * prototypes.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ITransformationService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ITransformationService.java
index 3b9a1f9df..9d4bae75e 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ITransformationService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/interfaces/ITransformationService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.internal.TransformationService;
 /**
  * This service manages model element specific transformations.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/CommandStackService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/CommandStackService.java
index e9e472906..4397eec69 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/CommandStackService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/CommandStackService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.ICommandStackService;
 /**
  * This class implements the {@link ICommandStackService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/CompositorService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/CompositorService.java
index bb5237923..874baa7d1 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/CompositorService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/CompositorService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.ICompositorService;
 /**
  * This class implements the {@link ICompositorService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ConnectorService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ConnectorService.java
index 0544587b0..c8d19c6b3 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ConnectorService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ConnectorService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.IConnectorService;
 /**
  * This class implements the {@link IConnectorService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ConstraintService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ConstraintService.java
index e8c7edf7a..14ccc4ab2 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ConstraintService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ConstraintService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.IConstraintService;
 /**
  * This class implements the {@link IConstraintService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ContextMenuService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ContextMenuService.java
index ee936bb5d..10d91c5e6 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ContextMenuService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ContextMenuService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.IContextMenuService;
 /**
  * This class implements the {@link IContextMenuService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/EditorService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/EditorService.java
index 498f44366..4cf5d1cda 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/EditorService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/EditorService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.IEditorService;
 /**
  * This class implements the {@link IEditorService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ExecutionService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ExecutionService.java
index e7ab3c59d..905616250 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ExecutionService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ExecutionService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.IExecutionService;
 /**
  * This class implements the {@link IExecutionService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/LibraryService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/LibraryService.java
index de1b393be..5d78a11d1 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/LibraryService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/LibraryService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.ILibraryService;
 /**
  * This class implements the {@link ILibraryService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/MarkerService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/MarkerService.java
index 594fae0de..3b4352f06 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/MarkerService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/MarkerService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.IMarkerService;
 /**
  * This class implements the {@link IMarkerService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ModelElementService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ModelElementService.java
index 93fc7f38a..9baf1ae6d 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ModelElementService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ModelElementService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.IModelElementService;
 /**
  * This class implements the {@link IModelElementService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/MultiUserService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/MultiUserService.java
index 91f05c0c7..99e3bcc03 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/MultiUserService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/MultiUserService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.IMultiUserService;
 /**
  * This class implements the {@link IMultiUserService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/NavigatorService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/NavigatorService.java
index e60cc1fa0..e8f24f96b 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/NavigatorService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/NavigatorService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.INavigatorService;
 /**
  * This class implements the {@link INavigatorService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/PersistencyService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/PersistencyService.java
index 4bbdeab64..63292f612 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/PersistencyService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/PersistencyService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.IPersistencyService;
 /**
  * This class implements the {@link IPersistencyService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/PropertiesService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/PropertiesService.java
index 7c5df5935..845d213a7 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/PropertiesService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/PropertiesService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.IPropertiesService;
 /**
  * This class implements the {@link IPropertiesService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/PrototypeService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/PrototypeService.java
index 731a087bb..0701ebe56 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/PrototypeService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/PrototypeService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.IPrototypeService;
 /**
  * This class implements the {@link IPrototypeService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ServiceManager.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ServiceManager.java
index c5adf656c..4ad5f9f56 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ServiceManager.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/ServiceManager.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -17,11 +17,10 @@ $Id$
 +--------------------------------------------------------------------------*/
 package org.fortiss.tooling.kernel.internal;
 
-
 /**
  * This class provides startup and shutdown code for the kernel services.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/TransformationService.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/TransformationService.java
index 2a3f001f8..1e7cfce27 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/TransformationService.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/internal/TransformationService.java
@@ -1,7 +1,7 @@
 /*--------------------------------------------------------------------------+
 $Id$
 |                                                                          |
-| Copyright 2005-2010 Technische Universitaet Muenchen                     |
+| Copyright 2011 ForTISS GmbH                                              |
 |                                                                          |
 | Licensed under the Apache License, Version 2.0 (the "License");          |
 | you may not use this file except in compliance with the License.         |
@@ -22,7 +22,7 @@ import org.fortiss.tooling.kernel.interfaces.ITransformationService;
 /**
  * This class implements the {@link ITransformationService} interface.
  * 
- * @author hoelzlf
+ * @author hoelzl
  * @author $Author$
  * @version $Rev$
  * @levd.rating RED Rev:
-- 
GitLab