Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2006-11-11 06:16:27 +0000
committerslewis2006-11-11 06:16:27 +0000
commitca6f724d01dcd3484a2a08fdc6a97c395c74a05f (patch)
treecf6058c45427c568a98e7c30dd2941e2f8f51cf3 /server-side/bundles/org.eclipse.ecf.server
parentdf34cd922000f2cfe1a7cfba4c4390f45656575e (diff)
downloadorg.eclipse.ecf-ca6f724d01dcd3484a2a08fdc6a97c395c74a05f.tar.gz
org.eclipse.ecf-ca6f724d01dcd3484a2a08fdc6a97c395c74a05f.tar.xz
org.eclipse.ecf-ca6f724d01dcd3484a2a08fdc6a97c395c74a05f.zip
Added IContainerInstantiator.getSupportedParameterTypes and IContainerInstantiator.getSupportedAdapterTypes. Added corresponding methods on ContainerTypeDescription. Added test case (ContainerTypeDescriptionTest) in org.eclipse.ecf.test. Fixed update site contents to include core feature only.
Diffstat (limited to 'server-side/bundles/org.eclipse.ecf.server')
-rw-r--r--server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/Activator.java10
-rw-r--r--server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/Config.java11
-rw-r--r--server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/ECFTCPServerStartup.java11
3 files changed, 32 insertions, 0 deletions
diff --git a/server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/Activator.java b/server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/Activator.java
index 0d7c22db8..167222026 100644
--- a/server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/Activator.java
+++ b/server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/Activator.java
@@ -1,3 +1,13 @@
+/****************************************************************************
+* Copyright (c) 2004 Composent, Inc. and others.
+* 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:
+* Composent, Inc. - initial API and implementation
+*****************************************************************************/
package org.eclipse.ecf.server;
diff --git a/server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/Config.java b/server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/Config.java
index 8d19dd4e7..0e673b183 100644
--- a/server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/Config.java
+++ b/server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/Config.java
@@ -1,3 +1,14 @@
+/****************************************************************************
+* Copyright (c) 2004 Composent, Inc. and others.
+* 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:
+* Composent, Inc. - initial API and implementation
+*****************************************************************************/
+
package org.eclipse.ecf.server;
import org.eclipse.osgi.util.NLS;
diff --git a/server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/ECFTCPServerStartup.java b/server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/ECFTCPServerStartup.java
index a7a7d2e01..7666f1f38 100644
--- a/server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/ECFTCPServerStartup.java
+++ b/server-side/bundles/org.eclipse.ecf.server/src/org/eclipse/ecf/server/ECFTCPServerStartup.java
@@ -1,3 +1,14 @@
+/****************************************************************************
+* Copyright (c) 2004 Composent, Inc. and others.
+* 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:
+* Composent, Inc. - initial API and implementation
+*****************************************************************************/
+
package org.eclipse.ecf.server;
import java.io.InputStream;

Back to the top