Skip to content

Commit 7dd8032

Browse files
committed
Moved copyright to be first lines in files
1 parent 87763b5 commit 7dd8032

File tree

4 files changed

+21
-23
lines changed

4 files changed

+21
-23
lines changed

tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/SubTypeOnlyTestView.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
package org.eclipse.ui.tests;
2-
3-
import org.eclipse.ui.views.markers.MarkerSupportView;
4-
51
/*******************************************************************************
62
* Copyright (c) 2022 Enda O'Brien and others.
73
*
@@ -13,6 +9,9 @@
139
*
1410
* Contributors: IBM Corporation - initial API and implementation
1511
*******************************************************************************/
12+
package org.eclipse.ui.tests;
13+
14+
import org.eclipse.ui.views.markers.MarkerSupportView;
1615

1716
public class SubTypeOnlyTestView extends MarkerSupportView {
1817
public static final String ID = "org.eclipse.ui.tests.subTypeOnlyTestView";

tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/TypeAndSubTypeTestView.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
package org.eclipse.ui.tests;
2-
3-
import org.eclipse.ui.views.markers.MarkerSupportView;
4-
51
/*******************************************************************************
62
* Copyright (c) 2022 Enda O'Brien and others.
73
*
@@ -13,6 +9,9 @@
139
*
1410
* Contributors: IBM Corporation - initial API and implementation
1511
*******************************************************************************/
12+
package org.eclipse.ui.tests;
13+
14+
import org.eclipse.ui.views.markers.MarkerSupportView;
1615

1716
public class TypeAndSubTypeTestView extends MarkerSupportView {
1817
public static final String ID = "org.eclipse.ui.tests.typeAndSubTypeTestView";

tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/TypeOnlyTestView.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
package org.eclipse.ui.tests;
2-
3-
import org.eclipse.ui.views.markers.MarkerSupportView;
4-
51
/*******************************************************************************
62
* Copyright (c) 2022 Enda O'Brien and others.
73
*
@@ -13,6 +9,9 @@
139
*
1410
* Contributors: IBM Corporation - initial API and implementation
1511
*******************************************************************************/
12+
package org.eclipse.ui.tests;
13+
14+
import org.eclipse.ui.views.markers.MarkerSupportView;
1615

1716
public class TypeOnlyTestView extends MarkerSupportView {
1817

tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/markers/MarkerTypeTests.java

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2022 Enda O'Brien and others.
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License 2.0 which accompanies this distribution,
6+
* and is available at https://www.eclipse.org/legal/epl-2.0/
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
9+
*
10+
* Contributors: IBM Corporation - initial API and implementation
11+
*******************************************************************************/
12+
113
package org.eclipse.ui.tests.markers;
214

315
import static org.junit.Assert.assertEquals;
@@ -21,17 +33,6 @@
2133
import org.eclipse.ui.views.markers.internal.MarkerTypesModel;
2234
import org.junit.Test;
2335

24-
/*******************************************************************************
25-
* Copyright (c) 2022 Enda O'Brien and others.
26-
*
27-
* This program and the accompanying materials are made available under the
28-
* terms of the Eclipse Public License 2.0 which accompanies this distribution,
29-
* and is available at https://www.eclipse.org/legal/epl-2.0/
30-
*
31-
* SPDX-License-Identifier: EPL-2.0
32-
*
33-
* Contributors: IBM Corporation - initial API and implementation
34-
*******************************************************************************/
3536
public class MarkerTypeTests {
3637

3738
static final String PROBLEM_MARKER = "org.eclipse.core.resources.problemmarker";

0 commit comments

Comments
 (0)