Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCedric Dumoulin2014-01-27 15:11:02 +0000
committerCedric Dumoulin2014-01-27 15:11:02 +0000
commit0aed91571da986b1d22f030823c53ba2f00d83eb (patch)
treeb4e3b389934ebaa04cc38073dc5d77a62bd47fa1 /extraplugins/layers
parent9c5e2c953ac6fbf1b72a6ec66966d4b59b48ee84 (diff)
downloadorg.eclipse.papyrus-0aed91571da986b1d22f030823c53ba2f00d83eb.tar.gz
org.eclipse.papyrus-0aed91571da986b1d22f030823c53ba2f00d83eb.tar.xz
org.eclipse.papyrus-0aed91571da986b1d22f030823c53ba2f00d83eb.zip
330199 - Correct copyrights
Diffstat (limited to 'extraplugins/layers')
-rw-r--r--extraplugins/layers/org.eclipse.papyrus.layers.dev.ui/readme.txt12
-rw-r--r--extraplugins/layers/org.eclipse.papyrus.layers.dev.ui/src/org/eclipse/papyrus/layers/dev/ui/Activator.java70
-rw-r--r--extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/.classpath1
-rw-r--r--extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/META-INF/MANIFEST.MF2
-rw-r--r--extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/build.properties4
5 files changed, 52 insertions, 37 deletions
diff --git a/extraplugins/layers/org.eclipse.papyrus.layers.dev.ui/readme.txt b/extraplugins/layers/org.eclipse.papyrus.layers.dev.ui/readme.txt
new file mode 100644
index 00000000000..d5d416addd9
--- /dev/null
+++ b/extraplugins/layers/org.eclipse.papyrus.layers.dev.ui/readme.txt
@@ -0,0 +1,12 @@
+#-------------------------------------------------------------------------------
+# Copyright (c) 2014 CEA LIST.
+# 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:
+# Cedric Dumoulin - cedric.dumoulin@lifl.fr
+#-------------------------------------------------------------------------------
+This plugins contains code for developpers.
+This plugins is not intended to be part of the layers distribution.
diff --git a/extraplugins/layers/org.eclipse.papyrus.layers.dev.ui/src/org/eclipse/papyrus/layers/dev/ui/Activator.java b/extraplugins/layers/org.eclipse.papyrus.layers.dev.ui/src/org/eclipse/papyrus/layers/dev/ui/Activator.java
index 6ab3d924563..94137e7ab64 100644
--- a/extraplugins/layers/org.eclipse.papyrus.layers.dev.ui/src/org/eclipse/papyrus/layers/dev/ui/Activator.java
+++ b/extraplugins/layers/org.eclipse.papyrus.layers.dev.ui/src/org/eclipse/papyrus/layers/dev/ui/Activator.java
@@ -1,30 +1,40 @@
-package org.eclipse.papyrus.layers.dev.ui;
-
-import org.osgi.framework.BundleActivator;
-import org.osgi.framework.BundleContext;
-
-public class Activator implements BundleActivator {
-
- private static BundleContext context;
-
- static BundleContext getContext() {
- return context;
- }
-
- /*
- * (non-Javadoc)
- * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
- */
- public void start(BundleContext bundleContext) throws Exception {
- Activator.context = bundleContext;
- }
-
- /*
- * (non-Javadoc)
- * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
- */
- public void stop(BundleContext bundleContext) throws Exception {
- Activator.context = null;
- }
-
-}
+/*******************************************************************************
+ * Copyright (c) 2014 CEA LIST.
+ * 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:
+ * Cedric Dumoulin - cedric.dumoulin@lifl.fr
+ ******************************************************************************/
+package org.eclipse.papyrus.layers.dev.ui;
+
+import org.osgi.framework.BundleActivator;
+import org.osgi.framework.BundleContext;
+
+public class Activator implements BundleActivator {
+
+ private static BundleContext context;
+
+ static BundleContext getContext() {
+ return context;
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
+ */
+ public void start(BundleContext bundleContext) throws Exception {
+ Activator.context = bundleContext;
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
+ */
+ public void stop(BundleContext bundleContext) throws Exception {
+ Activator.context = null;
+ }
+
+}
diff --git a/extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/.classpath b/extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/.classpath
index 561fae51867..645d9f22c06 100644
--- a/extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/.classpath
+++ b/extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/.classpath
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="test"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
diff --git a/extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/META-INF/MANIFEST.MF b/extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/META-INF/MANIFEST.MF
index 40a84844ace..2830d21b7f6 100644
--- a/extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/META-INF/MANIFEST.MF
+++ b/extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/META-INF/MANIFEST.MF
@@ -3,8 +3,6 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.papyrus.layers.integrationtests
Bundle-Version: 1.0.0.qualifier
-Bundle-ClassPath: integrationtests.jar,
- eclipse-43-R-modeling-kepler/eclipse/plugins/org.eclipse.gmf.runtime.notation_1.7.0.201306101425.jar
Export-Package: org.eclipse.papyrus.layers.integrationtests
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.papyrus.layers.runtime;bundle-version="0.10.0",
diff --git a/extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/build.properties b/extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/build.properties
index 84cb6c70e18..13458beb5d8 100644
--- a/extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/build.properties
+++ b/extraplugins/layers/org.eclipse.papyrus.layers.integrationtests/build.properties
@@ -1,6 +1,2 @@
-source.integrationtests.jar = src/,\
- test/
bin.includes = META-INF/,\
- eclipse-43-R-modeling-kepler/eclipse/plugins/org.eclipse.gmf.runtime.notation_1.7.0.201306101425.jar,\
- integrationtests.jar,\
models/

Back to the top