Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2010-02-03 10:26:25 +0000
committerEike Stepper2010-02-03 10:26:25 +0000
commitda0577de6aa1c8829e8da7d59a5875cfb076b30c (patch)
tree2c508f5558bec4e5535f3039525a75f6b110ba96 /plugins/org.gastro.rcp
parent8d7152b4786c2b9fe3a2ec6523d67a3d5f0a6702 (diff)
downloadcdo-da0577de6aa1c8829e8da7d59a5875cfb076b30c.tar.gz
cdo-da0577de6aa1c8829e8da7d59a5875cfb076b30c.tar.xz
cdo-da0577de6aa1c8829e8da7d59a5875cfb076b30c.zip
adjust legal headers
Diffstat (limited to 'plugins/org.gastro.rcp')
-rw-r--r--plugins/org.gastro.rcp/build.properties11
-rw-r--r--plugins/org.gastro.rcp/copyright.txt2
-rw-r--r--plugins/org.gastro.rcp/plugin.xml13
-rw-r--r--plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Activator.java8
-rw-r--r--plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Application.java4
-rw-r--r--plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationActionBarAdvisor.java4
-rw-r--r--plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationWorkbenchAdvisor.java2
-rw-r--r--plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationWorkbenchWindowAdvisor.java2
-rw-r--r--plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Configuration.java2
-rw-r--r--plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Model.java2
-rw-r--r--plugins/org.gastro.rcp/src/org/gastro/rcp/IConfiguration.java2
-rw-r--r--plugins/org.gastro.rcp/src/org/gastro/rcp/IModel.java2
12 files changed, 38 insertions, 16 deletions
diff --git a/plugins/org.gastro.rcp/build.properties b/plugins/org.gastro.rcp/build.properties
index 81280a4e38..4d99ef559f 100644
--- a/plugins/org.gastro.rcp/build.properties
+++ b/plugins/org.gastro.rcp/build.properties
@@ -1,3 +1,14 @@
+# Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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:
+# Eike Stepper - initial API and implementation
+
+# NLS_MESSAGEFORMAT_VAR
+
source.. = src/
output.. = bin/
bin.includes = plugin.xml,\
diff --git a/plugins/org.gastro.rcp/copyright.txt b/plugins/org.gastro.rcp/copyright.txt
index d7088ff84e..a4aa1b9a74 100644
--- a/plugins/org.gastro.rcp/copyright.txt
+++ b/plugins/org.gastro.rcp/copyright.txt
@@ -1,4 +1,4 @@
-Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.
+Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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
diff --git a/plugins/org.gastro.rcp/plugin.xml b/plugins/org.gastro.rcp/plugin.xml
index 602f64d9f6..b2699141a7 100644
--- a/plugins/org.gastro.rcp/plugin.xml
+++ b/plugins/org.gastro.rcp/plugin.xml
@@ -1,5 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
+<!--
+ Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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:
+ Eike Stepper - initial API and implementation
+-->
+
<plugin>
<extension
@@ -11,7 +22,7 @@
</run>
</application>
</extension>
-
+
<extension
id="product"
point="org.eclipse.core.runtime.products">
diff --git a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Activator.java b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Activator.java
index 93c2b3a7b0..7ed8497ff1 100644
--- a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Activator.java
+++ b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Activator.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2009 Eike Stepper (Berlin, Germany) and others.
+ * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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
@@ -24,7 +24,7 @@ import java.util.Properties;
/**
* The activator class controls the plug-in life cycle
- *
+ *
* @author Eike Stepper
*/
public class Activator extends AbstractUIPlugin
@@ -81,7 +81,7 @@ public class Activator extends AbstractUIPlugin
/**
* Returns the shared instance
- *
+ *
* @return the shared instance
*/
public static Activator getDefault()
@@ -91,7 +91,7 @@ public class Activator extends AbstractUIPlugin
/**
* Returns an image descriptor for the image file at the given plug-in relative path
- *
+ *
* @param path
* the path
* @return the image descriptor
diff --git a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Application.java b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Application.java
index 3e9f807d6f..34171ac26e 100644
--- a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Application.java
+++ b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Application.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2009 Eike Stepper (Berlin, Germany) and others.
+ * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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
@@ -21,7 +21,7 @@ import org.eclipse.ui.PlatformUI;
/**
* This class controls all aspects of the application's execution
- *
+ *
* @author Eike Stepper
*/
public class Application implements IApplication
diff --git a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationActionBarAdvisor.java b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationActionBarAdvisor.java
index 42967e78e6..a2f82f2b05 100644
--- a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationActionBarAdvisor.java
+++ b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationActionBarAdvisor.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2009 Eike Stepper (Berlin, Germany) and others.
+ * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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
@@ -22,7 +22,7 @@ import org.eclipse.ui.application.IActionBarConfigurer;
/**
* An action bar advisor is responsible for creating, adding, and disposing of the actions added to a workbench window.
* Each window will be populated with new actions.
- *
+ *
* @author Eike Stepper
*/
public class ApplicationActionBarAdvisor extends ActionBarAdvisor
diff --git a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationWorkbenchAdvisor.java b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationWorkbenchAdvisor.java
index 5107d6bb42..4abb2a83db 100644
--- a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationWorkbenchAdvisor.java
+++ b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationWorkbenchAdvisor.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2009 Eike Stepper (Berlin, Germany) and others.
+ * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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
diff --git a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationWorkbenchWindowAdvisor.java b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationWorkbenchWindowAdvisor.java
index 6ce3f78016..fec3920042 100644
--- a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationWorkbenchWindowAdvisor.java
+++ b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/ApplicationWorkbenchWindowAdvisor.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2009 Eike Stepper (Berlin, Germany) and others.
+ * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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
diff --git a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Configuration.java b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Configuration.java
index b7919fef32..42613a73ab 100644
--- a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Configuration.java
+++ b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Configuration.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2009 Eike Stepper (Berlin, Germany) and others.
+ * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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
diff --git a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Model.java b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Model.java
index 00f211a90a..b9ccbb1634 100644
--- a/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Model.java
+++ b/plugins/org.gastro.rcp/src/org/gastro/internal/rcp/Model.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2009 Eike Stepper (Berlin, Germany) and others.
+ * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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
diff --git a/plugins/org.gastro.rcp/src/org/gastro/rcp/IConfiguration.java b/plugins/org.gastro.rcp/src/org/gastro/rcp/IConfiguration.java
index aef0705961..5043b63c4f 100644
--- a/plugins/org.gastro.rcp/src/org/gastro/rcp/IConfiguration.java
+++ b/plugins/org.gastro.rcp/src/org/gastro/rcp/IConfiguration.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2009 Eike Stepper (Berlin, Germany) and others.
+ * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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
diff --git a/plugins/org.gastro.rcp/src/org/gastro/rcp/IModel.java b/plugins/org.gastro.rcp/src/org/gastro/rcp/IModel.java
index 24ef020c9b..96eea1a517 100644
--- a/plugins/org.gastro.rcp/src/org/gastro/rcp/IModel.java
+++ b/plugins/org.gastro.rcp/src/org/gastro/rcp/IModel.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2009 Eike Stepper (Berlin, Germany) and others.
+ * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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

Back to the top