Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.oomph.workingsets/src')
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/ExclusionPredicate.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/InclusionPredicate.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSet.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetGroup.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetsFactory.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetsPackage.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/ExclusionPredicateImpl.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/InclusionPredicateImpl.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/PreferencesURIHandlerImpl.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetGroupImpl.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetImpl.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetsFactoryImpl.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetsPackageImpl.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/package-info.java2
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/package-info.java2
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsAdapterFactory.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsSwitch.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsUtil.java4
-rw-r--r--plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/package-info.java2
19 files changed, 35 insertions, 35 deletions
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/ExclusionPredicate.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/ExclusionPredicate.java
index 6c7bf4fe8..e9bdc458c 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/ExclusionPredicate.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/ExclusionPredicate.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014, 2015 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/InclusionPredicate.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/InclusionPredicate.java
index 66c127cd9..e21cc1524 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/InclusionPredicate.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/InclusionPredicate.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014, 2015 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSet.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSet.java
index db55ef5c6..57a5124ca 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSet.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSet.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014, 2015 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetGroup.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetGroup.java
index 269af6d91..c8de390e0 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetGroup.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetGroup.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014, 2015 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetsFactory.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetsFactory.java
index 362748530..7a6d3ed1f 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetsFactory.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetsFactory.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetsPackage.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetsPackage.java
index 12fd65347..d5393b287 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetsPackage.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/WorkingSetsPackage.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/ExclusionPredicateImpl.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/ExclusionPredicateImpl.java
index ba981d310..077b39993 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/ExclusionPredicateImpl.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/ExclusionPredicateImpl.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014, 2015 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/InclusionPredicateImpl.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/InclusionPredicateImpl.java
index 746922a8f..ada4904ec 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/InclusionPredicateImpl.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/InclusionPredicateImpl.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014, 2015 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/PreferencesURIHandlerImpl.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/PreferencesURIHandlerImpl.java
index a990dc620..d31648dfc 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/PreferencesURIHandlerImpl.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/PreferencesURIHandlerImpl.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetGroupImpl.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetGroupImpl.java
index cf15e6265..5b4753dcd 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetGroupImpl.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetGroupImpl.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014, 2015 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetImpl.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetImpl.java
index e3d95ca67..13a46de61 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetImpl.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetImpl.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014, 2015, 2018 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetsFactoryImpl.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetsFactoryImpl.java
index 2bb3bc945..58b6d7469 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetsFactoryImpl.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetsFactoryImpl.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetsPackageImpl.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetsPackageImpl.java
index 0c87a2615..b220a37bb 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetsPackageImpl.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/WorkingSetsPackageImpl.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014, 2015, 2018 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/package-info.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/package-info.java
index 44de8ab8f..78210e33e 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/package-info.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/impl/package-info.java
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2014-2016 Eike Stepper (Loehne, 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:
+ * the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v20.html Contributors:
* Eike Stepper - initial API and implementation
*/
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/package-info.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/package-info.java
index 768e7efae..37cc41f94 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/package-info.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/package-info.java
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2014-2016 Eike Stepper (Loehne, 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:
+ * the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v20.html Contributors:
* Eike Stepper - initial API and implementation
*/
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsAdapterFactory.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsAdapterFactory.java
index b1245cbd0..05211483b 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsAdapterFactory.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsAdapterFactory.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsSwitch.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsSwitch.java
index 139083e0d..d30d0b283 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsSwitch.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsSwitch.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014, 2015 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsUtil.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsUtil.java
index b4b9ee69b..ea58ed414 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsUtil.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/WorkingSetsUtil.java
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2014, 2015 Eike Stepper (Loehne, 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
+ * are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
diff --git a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/package-info.java b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/package-info.java
index 90b0996b9..238114b7a 100644
--- a/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/package-info.java
+++ b/plugins/org.eclipse.oomph.workingsets/src/org/eclipse/oomph/workingsets/util/package-info.java
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2014-2016 Eike Stepper (Loehne, 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:
+ * the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v20.html Contributors:
* Eike Stepper - initial API and implementation
*/

Back to the top