Skip to content

Commit c17a0b5

Browse files
committed
Added copyright statement and documentation to each class.
Signed-off-by: Michael Glavassevich <[email protected]>
1 parent 1c4571b commit c17a0b5

File tree

12 files changed

+180
-0
lines changed

12 files changed

+180
-0
lines changed

src/test/resources/projects/maven/jakarta-sample/src/main/java/ng/Boolean.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2024 IBM Corporation.
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License v. 2.0 which is available at
6+
* http://www.eclipse.org/legal/epl-2.0.
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
9+
*******************************************************************************/
10+
111
package ng;
212

313
import java.io.Serializable;
414

15+
/**
16+
* This class can be used in testing to impersonate java.lang.Boolean in order to
17+
* verify that qualified class names are processed correctly. It is not intended to
18+
* be complete or functional.
19+
*/
520
public class Boolean implements Serializable, Comparable<Boolean> {
621

722
@Override

src/test/resources/projects/maven/jakarta-sample/src/main/java/ng/Byte.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2024 IBM Corporation.
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License v. 2.0 which is available at
6+
* http://www.eclipse.org/legal/epl-2.0.
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
9+
*******************************************************************************/
10+
111
package ng;
212

13+
/**
14+
* This class can be used in testing to impersonate java.lang.Byte in order to
15+
* verify that qualified class names are processed correctly. It is not intended to
16+
* be complete or functional.
17+
*/
318
public class Byte extends Number implements Comparable<Byte> {
419

520
@Override
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2024 IBM Corporation.
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License v. 2.0 which is available at
6+
* http://www.eclipse.org/legal/epl-2.0.
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
9+
*******************************************************************************/
10+
111
package ng;
212

13+
/**
14+
* This class can be used in testing to impersonate java.lang.CharSequence in order to
15+
* verify that qualified class names are processed correctly. It is not intended to
16+
* be complete or functional.
17+
*/
318
public interface CharSequence {
419

520
}

src/test/resources/projects/maven/jakarta-sample/src/main/java/ng/Character.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2024 IBM Corporation.
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License v. 2.0 which is available at
6+
* http://www.eclipse.org/legal/epl-2.0.
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
9+
*******************************************************************************/
10+
111
package ng;
212

313
import java.io.Serializable;
414

15+
/**
16+
* This class can be used in testing to impersonate java.lang.Character in order to
17+
* verify that qualified class names are processed correctly. It is not intended to
18+
* be complete or functional.
19+
*/
520
public class Character implements Serializable, Comparable<Character> {
621

722
@Override

src/test/resources/projects/maven/jakarta-sample/src/main/java/ng/Double.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2024 IBM Corporation.
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License v. 2.0 which is available at
6+
* http://www.eclipse.org/legal/epl-2.0.
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
9+
*******************************************************************************/
10+
111
package ng;
212

13+
/**
14+
* This class can be used in testing to impersonate java.lang.Double in order to
15+
* verify that qualified class names are processed correctly. It is not intended to
16+
* be complete or functional.
17+
*/
318
public class Double extends Number implements Comparable<Double> {
419

520
@Override

src/test/resources/projects/maven/jakarta-sample/src/main/java/ng/Float.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2024 IBM Corporation.
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License v. 2.0 which is available at
6+
* http://www.eclipse.org/legal/epl-2.0.
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
9+
*******************************************************************************/
10+
111
package ng;
212

13+
/**
14+
* This class can be used in testing to impersonate java.lang.Float in order to
15+
* verify that qualified class names are processed correctly. It is not intended to
16+
* be complete or functional.
17+
*/
318
public class Float extends Number implements Comparable<Float> {
419

520
@Override

src/test/resources/projects/maven/jakarta-sample/src/main/java/ng/Integer.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2024 IBM Corporation.
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License v. 2.0 which is available at
6+
* http://www.eclipse.org/legal/epl-2.0.
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
9+
*******************************************************************************/
10+
111
package ng;
212

13+
/**
14+
* This class can be used in testing to impersonate java.lang.Integer in order to
15+
* verify that qualified class names are processed correctly. It is not intended to
16+
* be complete or functional.
17+
*/
318
public class Integer extends Number implements Comparable<Integer> {
419

520
@Override

src/test/resources/projects/maven/jakarta-sample/src/main/java/ng/Long.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2024 IBM Corporation.
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License v. 2.0 which is available at
6+
* http://www.eclipse.org/legal/epl-2.0.
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
9+
*******************************************************************************/
10+
111
package ng;
212

13+
/**
14+
* This class can be used in testing to impersonate java.lang.Long in order to
15+
* verify that qualified class names are processed correctly. It is not intended to
16+
* be complete or functional.
17+
*/
318
public class Long extends Number implements Comparable<Long> {
419

520
@Override

src/test/resources/projects/maven/jakarta-sample/src/main/java/ng/Short.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2024 IBM Corporation.
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License v. 2.0 which is available at
6+
* http://www.eclipse.org/legal/epl-2.0.
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
9+
*******************************************************************************/
10+
111
package ng;
212

13+
/**
14+
* This class can be used in testing to impersonate java.lang.Short in order to
15+
* verify that qualified class names are processed correctly. It is not intended to
16+
* be complete or functional.
17+
*/
318
public class Short extends Number implements Comparable<Short> {
419

520
@Override

src/test/resources/projects/maven/jakarta-sample/src/main/java/ng/String.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2024 IBM Corporation.
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License v. 2.0 which is available at
6+
* http://www.eclipse.org/legal/epl-2.0.
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
9+
*******************************************************************************/
10+
111
package ng;
212

313
import java.io.Serializable;
414

15+
/**
16+
* This class can be used in testing to impersonate java.lang.String in order to
17+
* verify that qualified class names are processed correctly. It is not intended to
18+
* be complete or functional.
19+
*/
520
public class String implements Serializable, Comparable<String>, CharSequence {
621

722
@Override

0 commit comments

Comments
 (0)