Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2009-10-12 18:52:45 +0000
committerslewis2009-10-12 18:52:45 +0000
commit0644f8880770153e10d9eb2be13ac9cb5dec981d (patch)
treef96bc5940beaf354afb83cc67912da4afb2b3ea3 /examples/bundles/org.eclipse.ecf.examples.remoteservices.hello
parent1534bebc5297ef095fefff0a3036a09a461bbb96 (diff)
downloadorg.eclipse.ecf-0644f8880770153e10d9eb2be13ac9cb5dec981d.tar.gz
org.eclipse.ecf-0644f8880770153e10d9eb2be13ac9cb5dec981d.tar.xz
org.eclipse.ecf-0644f8880770153e10d9eb2be13ac9cb5dec981d.zip
Changed properties values, added examples to map and feature
Diffstat (limited to 'examples/bundles/org.eclipse.ecf.examples.remoteservices.hello')
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/bundle.properties16
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/IHello.java19
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/impl/Hello.java19
3 files changed, 29 insertions, 25 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/bundle.properties b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/bundle.properties
index 33122b4ae..e08deddbc 100644
--- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/bundle.properties
+++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/bundle.properties
@@ -1,10 +1,12 @@
-#################################################################################
-# Copyright (c) 2009 EclipseSource 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
-#
+################################################################################
+# Copyright (c) 2009 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:
-# EclipseSource - initial API and implementation
-#################################################################################
+# Composent, Inc. - initial API and implementation
+################################################################################
bundleName=ECF RemoteServices Hello Example
bundleProvider=Eclipse.org - ECF \ No newline at end of file
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/IHello.java b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/IHello.java
index 5edf5dd60..c994a748e 100644
--- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/IHello.java
+++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/IHello.java
@@ -1,12 +1,13 @@
-/*******************************************************************************
-* Copyright (c) 2009 EclipseSource 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:
-* EclipseSource - initial API and implementation
-******************************************************************************/
+/****************************************************************************
+ * Copyright (c) 2009 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.examples.remoteservices.hello;
public interface IHello {
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/impl/Hello.java b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/impl/Hello.java
index 88fe83a66..93a38e003 100644
--- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/impl/Hello.java
+++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/impl/Hello.java
@@ -1,12 +1,13 @@
-/*******************************************************************************
-* Copyright (c) 2009 EclipseSource 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:
-* EclipseSource - initial API and implementation
-******************************************************************************/
+/****************************************************************************
+ * Copyright (c) 2009 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.examples.remoteservices.hello.impl;
import org.eclipse.ecf.examples.remoteservices.hello.IHello;

Back to the top