From 50918de3340291f463f5f6829730e978e2d4b883 Mon Sep 17 00:00:00 2001 From: Eike Stepper Date: Sun, 2 Apr 2006 09:36:57 +0000 Subject: Fixed copyright comments. --- .../cdo/examples/server/internal/ExampleServerApplication.java | 10 ++++++++++ .../emf/cdo/examples/server/internal/ExampleServerPlugin.java | 8 ++++---- .../src/org/eclipse/emf/cdo/server/AttributeInfo.java | 10 +++++----- .../src/org/eclipse/emf/cdo/server/ClassInfo.java | 10 +++++----- .../src/org/eclipse/emf/cdo/server/ColumnConverter.java | 10 +++++----- .../eclipse/emf/cdo/server/DatabaseInconsistencyException.java | 10 +++++----- .../src/org/eclipse/emf/cdo/server/Mapper.java | 10 +++++----- .../src/org/eclipse/emf/cdo/server/PackageInfo.java | 8 ++++---- .../src/org/eclipse/emf/cdo/server/PackageListener.java | 8 ++++---- .../src/org/eclipse/emf/cdo/server/PackageManager.java | 10 +++++----- .../src/org/eclipse/emf/cdo/server/ResourceInfo.java | 10 +++++----- .../src/org/eclipse/emf/cdo/server/ResourceManager.java | 10 +++++----- .../org/eclipse/emf/cdo/server/ResourceNotFoundException.java | 8 ++++---- .../src/org/eclipse/emf/cdo/server/ServerCDOProtocol.java | 10 +++++----- .../src/org/eclipse/emf/cdo/server/ServerCDOResProtocol.java | 10 +++++----- .../src/org/eclipse/emf/cdo/server/impl/AttributeInfoImpl.java | 10 +++++----- .../src/org/eclipse/emf/cdo/server/impl/ClassInfoImpl.java | 10 +++++----- .../org/eclipse/emf/cdo/server/impl/ColumnConverterImpl.java | 8 ++++---- .../src/org/eclipse/emf/cdo/server/impl/MapperImpl.java | 10 +++++----- .../src/org/eclipse/emf/cdo/server/impl/PackageInfoImpl.java | 8 ++++---- .../org/eclipse/emf/cdo/server/impl/PackageManagerImpl.java | 10 +++++----- .../src/org/eclipse/emf/cdo/server/impl/ResourceInfoImpl.java | 10 +++++----- .../org/eclipse/emf/cdo/server/impl/ResourceManagerImpl.java | 8 ++++---- .../src/org/eclipse/emf/cdo/server/impl/SQLConstants.java | 10 +++++----- .../src/org/eclipse/emf/cdo/server/internal/ServerPlugin.java | 8 ++++---- .../emf/cdo/server/protocol/AnnouncePackageIndication.java | 8 ++++---- .../emf/cdo/server/protocol/CommitTransactionIndication.java | 8 ++++---- .../emf/cdo/server/protocol/DescribePackageIndication.java | 8 ++++---- .../emf/cdo/server/protocol/InvalidateObjectRequest.java | 8 ++++---- .../eclipse/emf/cdo/server/protocol/LoadObjectIndication.java | 8 ++++---- .../emf/cdo/server/protocol/LoadResourceIndication.java | 8 ++++---- .../emf/cdo/server/protocol/QueryAllResourcesIndication.java | 10 ++++++++++ .../emf/cdo/server/protocol/ResourcePathIndication.java | 8 ++++---- .../eclipse/emf/cdo/server/protocol/ResourceRIDIndication.java | 8 ++++---- .../emf/cdo/server/protocol/ResourcesChangedRequest.java | 8 ++++---- .../eclipse/emf/cdo/server/protocol/ServerCDOProtocolImpl.java | 10 +++++----- .../emf/cdo/server/protocol/ServerCDOResProtocolImpl.java | 10 +++++----- .../src/org/eclipse/net4j/tests/SocketTest.java | 8 ++++---- .../src/org/eclipse/net4j/tests/TestContainer.java | 10 ++++++++++ .../src/org/eclipse/net4j/tests/old/ChannelImplTest.java | 10 +++++----- .../src/org/eclipse/net4j/tests/old/PoolTest.java | 10 +++++----- .../src/org/eclipse/net4j/tests/old/SelectorTest.java | 10 +++++----- .../src/org/eclipse/net4j/tests/old/SocketConnectorTest.java | 10 +++++----- .../org/eclipse/net4j/tests/protocol/Net4jTestProtocol.java | 10 +++++----- .../src/org/eclipse/net4j/tests/protocol/TestIndication.java | 10 +++++----- .../src/org/eclipse/net4j/tests/protocol/TestRequest.java | 10 +++++----- .../src/org/eclipse/net4j/tests/protocol/ValueHelper.java | 10 ++++++++++ .../src/org/eclipse/net4j/tests/util/BlockingDetector.java | 10 +++++----- .../src/org/eclipse/net4j/tests/util/ServiceInvoker.java | 10 +++++----- .../src/org/eclipse/net4j/tests/util/TestUtils.java | 10 +++++----- 50 files changed, 252 insertions(+), 212 deletions(-) diff --git a/plugins/org.eclipse.emf.cdo.examples.server/src/org/eclipse/emf/cdo/examples/server/internal/ExampleServerApplication.java b/plugins/org.eclipse.emf.cdo.examples.server/src/org/eclipse/emf/cdo/examples/server/internal/ExampleServerApplication.java index 21f07e7569..f5888e2329 100644 --- a/plugins/org.eclipse.emf.cdo.examples.server/src/org/eclipse/emf/cdo/examples/server/internal/ExampleServerApplication.java +++ b/plugins/org.eclipse.emf.cdo.examples.server/src/org/eclipse/emf/cdo/examples/server/internal/ExampleServerApplication.java @@ -1,3 +1,13 @@ +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + **************************************************************************/ package org.eclipse.emf.cdo.example.server.internal; diff --git a/plugins/org.eclipse.emf.cdo.examples.server/src/org/eclipse/emf/cdo/examples/server/internal/ExampleServerPlugin.java b/plugins/org.eclipse.emf.cdo.examples.server/src/org/eclipse/emf/cdo/examples/server/internal/ExampleServerPlugin.java index dd12038d77..df57b7522d 100644 --- a/plugins/org.eclipse.emf.cdo.examples.server/src/org/eclipse/emf/cdo/examples/server/internal/ExampleServerPlugin.java +++ b/plugins/org.eclipse.emf.cdo.examples.server/src/org/eclipse/emf/cdo/examples/server/internal/ExampleServerPlugin.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.example.server.internal; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/AttributeInfo.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/AttributeInfo.java index 195587a374..c29b554e29 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/AttributeInfo.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/AttributeInfo.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; @@ -22,4 +22,4 @@ public interface AttributeInfo public String getColumnName(); public int getColumnType(); -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ClassInfo.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ClassInfo.java index c39160d5ac..fa34d92e62 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ClassInfo.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ClassInfo.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; @@ -33,4 +33,4 @@ public interface ClassInfo public ClassInfo getParent(); public String getColumnNames(); -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ColumnConverter.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ColumnConverter.java index e01b155016..88162cf7eb 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ColumnConverter.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ColumnConverter.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; @@ -29,4 +29,4 @@ public interface ColumnConverter extends Service * @param value */ public void toChannel(Channel channel, int dataType, Object value); -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/DatabaseInconsistencyException.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/DatabaseInconsistencyException.java index fc6457a01f..cbd04a527c 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/DatabaseInconsistencyException.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/DatabaseInconsistencyException.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; @@ -53,4 +53,4 @@ public class DatabaseInconsistencyException extends CDOException { super(message, cause); } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/Mapper.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/Mapper.java index 3610dfaece..68cee68551 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/Mapper.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/Mapper.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; @@ -85,4 +85,4 @@ public interface Mapper extends Service public ColumnConverter getColumnConverter(); -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/PackageInfo.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/PackageInfo.java index fbbf69b3e8..5d5c4d69fc 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/PackageInfo.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/PackageInfo.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/PackageListener.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/PackageListener.java index ce106fdff4..df5e6e85ba 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/PackageListener.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/PackageListener.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/PackageManager.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/PackageManager.java index d0278e4960..93aa5ecbb0 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/PackageManager.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/PackageManager.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; @@ -29,4 +29,4 @@ public interface PackageManager extends Service public ClassInfo getClassInfo(int cid); public ClassInfo getClassInfo(String name); -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceInfo.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceInfo.java index bbd9fda64b..0233a8a21f 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceInfo.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceInfo.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; @@ -18,4 +18,4 @@ public interface ResourceInfo public String getPath(); public int getRID(); -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceManager.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceManager.java index 17929e0733..a0ae9edafe 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceManager.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceManager.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; @@ -23,4 +23,4 @@ public interface ResourceManager extends Service public ResourceInfo getResourceInfo(int rid, Mapper mapper); public ResourceInfo getResourceInfo(String path, Mapper mapper); -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceNotFoundException.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceNotFoundException.java index 492596f09c..7ed5829bda 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceNotFoundException.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceNotFoundException.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ServerCDOProtocol.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ServerCDOProtocol.java index 28a6071201..eb86a87d7c 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ServerCDOProtocol.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ServerCDOProtocol.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; @@ -23,4 +23,4 @@ public interface ServerCDOProtocol extends CDOProtocol public TransactionTemplate getTransactionTemplate(); public ServerCDOResProtocol getServerCDOResProtocol(); -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ServerCDOResProtocol.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ServerCDOResProtocol.java index 9361845538..cda5435dba 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ServerCDOResProtocol.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ServerCDOResProtocol.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server; @@ -21,4 +21,4 @@ public interface ServerCDOResProtocol extends CDOResProtocol public Mapper getMapper(); public TransactionTemplate getTransactionTemplate(); -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/AttributeInfoImpl.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/AttributeInfoImpl.java index 4a942cf5ae..ec569b1544 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/AttributeInfoImpl.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/AttributeInfoImpl.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.impl; @@ -60,4 +60,4 @@ public class AttributeInfoImpl implements AttributeInfo { return columnType; } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ClassInfoImpl.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ClassInfoImpl.java index 87ea5e8636..1d2150bf64 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ClassInfoImpl.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ClassInfoImpl.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.impl; @@ -147,4 +147,4 @@ public class ClassInfoImpl implements ClassInfo return cachedColumnNames; } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ColumnConverterImpl.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ColumnConverterImpl.java index 1083244e71..6b44f1f3e4 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ColumnConverterImpl.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ColumnConverterImpl.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.impl; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/MapperImpl.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/MapperImpl.java index 1c3d5e51e4..24865d2ddd 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/MapperImpl.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/MapperImpl.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.impl; @@ -873,4 +873,4 @@ public class MapperImpl extends ServiceImpl implements Mapper, SQLConstants segmentTable.addSimpleIndex(OBJECT_OID_COLUMN, IndexType.PRIMARY_LITERAL); } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/PackageInfoImpl.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/PackageInfoImpl.java index c41019eeb4..94ab900348 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/PackageInfoImpl.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/PackageInfoImpl.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.impl; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/PackageManagerImpl.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/PackageManagerImpl.java index 4caf5cf52d..ad26629569 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/PackageManagerImpl.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/PackageManagerImpl.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.impl; @@ -82,4 +82,4 @@ public class PackageManagerImpl extends ServiceImpl implements PackageManager listener.notifyAddedPackage(); } } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ResourceInfoImpl.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ResourceInfoImpl.java index ae2a2c19b4..b9784d3c05 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ResourceInfoImpl.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ResourceInfoImpl.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.impl; @@ -69,4 +69,4 @@ public class ResourceInfoImpl implements ResourceInfo return "ResourceInfo(rid=" + rid + ", path=" + path + ", nextOIDFragment=" + nextOIDFragment + ")"; } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ResourceManagerImpl.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ResourceManagerImpl.java index 2ea38abd62..42e6931182 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ResourceManagerImpl.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/ResourceManagerImpl.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.impl; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/SQLConstants.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/SQLConstants.java index fed227ef8d..738d1fe8fa 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/SQLConstants.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/impl/SQLConstants.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.impl; @@ -196,4 +196,4 @@ public interface SQLConstants public static final String DO_OPTIMISTIC_CONTROL = "UPDATE " + OBJECT_TABLE + " SET " + OBJECT_OCA_COLUMN + "=" + OBJECT_OCA_COLUMN + "+1 WHERE " + OBJECT_OID_COLUMN + "=?" + " AND " + OBJECT_OCA_COLUMN + "=?"; -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/internal/ServerPlugin.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/internal/ServerPlugin.java index 32ef3d51cd..f3d4fadd86 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/internal/ServerPlugin.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/internal/ServerPlugin.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.internal; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/AnnouncePackageIndication.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/AnnouncePackageIndication.java index f890b8a3af..df3406fc6b 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/AnnouncePackageIndication.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/AnnouncePackageIndication.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.protocol; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/CommitTransactionIndication.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/CommitTransactionIndication.java index 0421b51981..0a95cd8426 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/CommitTransactionIndication.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/CommitTransactionIndication.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.protocol; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/DescribePackageIndication.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/DescribePackageIndication.java index 1aa0533176..97eb62086d 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/DescribePackageIndication.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/DescribePackageIndication.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.protocol; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/InvalidateObjectRequest.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/InvalidateObjectRequest.java index 8206b6d334..d430149f31 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/InvalidateObjectRequest.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/InvalidateObjectRequest.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.protocol; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/LoadObjectIndication.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/LoadObjectIndication.java index 7f0d8223cb..aa2d6e75a9 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/LoadObjectIndication.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/LoadObjectIndication.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.protocol; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/LoadResourceIndication.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/LoadResourceIndication.java index ec3e22a0ea..e3c5e54c5f 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/LoadResourceIndication.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/LoadResourceIndication.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.protocol; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/QueryAllResourcesIndication.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/QueryAllResourcesIndication.java index 54e72d38d8..2109ea3ab1 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/QueryAllResourcesIndication.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/QueryAllResourcesIndication.java @@ -1,3 +1,13 @@ +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + **************************************************************************/ package org.eclipse.emf.cdo.server.protocol; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ResourcePathIndication.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ResourcePathIndication.java index 656a04a2ac..7c27562a4e 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ResourcePathIndication.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ResourcePathIndication.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.protocol; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ResourceRIDIndication.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ResourceRIDIndication.java index 281ff52bea..b9d29df9ac 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ResourceRIDIndication.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ResourceRIDIndication.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.protocol; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ResourcesChangedRequest.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ResourcesChangedRequest.java index 5fc748495c..9b53f06157 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ResourcesChangedRequest.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ResourcesChangedRequest.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.protocol; diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ServerCDOProtocolImpl.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ServerCDOProtocolImpl.java index 35af66f112..fdf59a7e58 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ServerCDOProtocolImpl.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ServerCDOProtocolImpl.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.protocol; @@ -108,4 +108,4 @@ public class ServerCDOProtocolImpl extends AbstractCDOProtocol implements Server assertNotNull("mapper"); assertNotNull("transactionTemplate"); } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ServerCDOResProtocolImpl.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ServerCDOResProtocolImpl.java index cbc5fc0364..66337888af 100644 --- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ServerCDOResProtocolImpl.java +++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/protocol/ServerCDOResProtocolImpl.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.emf.cdo.server.protocol; @@ -76,4 +76,4 @@ public class ServerCDOResProtocolImpl extends AbstractCDOResProtocol implements assertNotNull("mapper"); assertNotNull("transactionTemplate"); } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/SocketTest.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/SocketTest.java index 0f7dea62a9..5f51a9c37a 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/SocketTest.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/SocketTest.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.net4j.test; diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/TestContainer.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/TestContainer.java index ff864c0033..5986ecc1aa 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/TestContainer.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/TestContainer.java @@ -1,3 +1,13 @@ +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + **************************************************************************/ package org.eclipse.net4j.test; diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/ChannelImplTest.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/ChannelImplTest.java index ec86e2f6bb..ac9749ae74 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/ChannelImplTest.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/ChannelImplTest.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.net4j.test; @@ -760,4 +760,4 @@ public class ChannelImplTest extends TestCase // { // throw new ImplementationError("Implement handleTransmission()"); // } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/PoolTest.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/PoolTest.java index caf9f07114..552521781f 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/PoolTest.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/PoolTest.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.net4j.test; @@ -721,4 +721,4 @@ public class PoolTest extends TestCase // .position() == 0); // // } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/SelectorTest.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/SelectorTest.java index bdea7d8a69..c3847c4722 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/SelectorTest.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/SelectorTest.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.net4j.test; @@ -61,4 +61,4 @@ public class SelectorTest extends TestCase { } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/SocketConnectorTest.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/SocketConnectorTest.java index 5f77479267..74fe8a66c2 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/SocketConnectorTest.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/old/SocketConnectorTest.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.net4j.test; @@ -675,4 +675,4 @@ public class SocketConnectorTest extends TestCase } } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/Net4jTestProtocol.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/Net4jTestProtocol.java index 81d5447abf..4195fecd68 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/Net4jTestProtocol.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/Net4jTestProtocol.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.net4j.test.protocol; @@ -44,4 +44,4 @@ public class Net4jTestProtocol extends AbstractProtocol implements Protocol { return SYMMETRIC; } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/TestIndication.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/TestIndication.java index 43c83cacd3..c415af3393 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/TestIndication.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/TestIndication.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.net4j.test.protocol; @@ -36,4 +36,4 @@ public class TestIndication extends AbstractIndicationWithResponse { ValueHelper.transmitValues(getChannel(), values); } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/TestRequest.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/TestRequest.java index 5a7d1ed137..8116c7ae36 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/TestRequest.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/TestRequest.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.net4j.test.protocol; @@ -37,4 +37,4 @@ public class TestRequest extends AbstractRequestWithConfirmation { return ValueHelper.receiveValues(getChannel()); } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/ValueHelper.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/ValueHelper.java index 5f84e4412c..756a034ee6 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/ValueHelper.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/protocol/ValueHelper.java @@ -1,3 +1,13 @@ +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + **************************************************************************/ package org.eclipse.net4j.test.protocol; diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/BlockingDetector.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/BlockingDetector.java index 6aa8cef915..9235c3be74 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/BlockingDetector.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/BlockingDetector.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.net4j.test.util; @@ -97,4 +97,4 @@ public abstract class BlockingDetector super(ex); } } -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/ServiceInvoker.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/ServiceInvoker.java index caa722cce2..45a684011e 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/ServiceInvoker.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/ServiceInvoker.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.net4j.test.util; @@ -58,4 +58,4 @@ public abstract class ServiceInvoker } protected abstract void invokeService(Service bean) throws Exception; -} \ No newline at end of file +} diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/TestUtils.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/TestUtils.java index b6b0ab7998..3463bca2da 100644 --- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/TestUtils.java +++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/TestUtils.java @@ -1,13 +1,13 @@ -/******************************************************************************* - * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools. +/*************************************************************************** + * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * + * * Contributors: * Eike Stepper - initial API and implementation - *******************************************************************************/ + **************************************************************************/ package org.eclipse.net4j.test.util; @@ -43,4 +43,4 @@ public class TestUtils String text = t.getMessage(); assertContains(text, word); } -} \ No newline at end of file +} -- cgit v1.2.3