Skip to content

Commit

Permalink
Added copyright statement and documentation to each class.
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Glavassevich <[email protected]>
  • Loading branch information
mrglavas committed Nov 6, 2024
1 parent 1c4571b commit c17a0b5
Show file tree
Hide file tree
Showing 12 changed files with 180 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
/*******************************************************************************
* Copyright (c) 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/

package ng;

import java.io.Serializable;

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

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
/*******************************************************************************
* Copyright (c) 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/

package ng;

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

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
/*******************************************************************************
* Copyright (c) 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/

package ng;

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

}
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
/*******************************************************************************
* Copyright (c) 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/

package ng;

import java.io.Serializable;

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

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
/*******************************************************************************
* Copyright (c) 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/

package ng;

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

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
/*******************************************************************************
* Copyright (c) 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/

package ng;

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

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
/*******************************************************************************
* Copyright (c) 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/

package ng;

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

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
/*******************************************************************************
* Copyright (c) 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/

package ng;

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

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
/*******************************************************************************
* Copyright (c) 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/

package ng;

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

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
/*******************************************************************************
* Copyright (c) 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/

package ng;

import java.io.Serializable;

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

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
/*******************************************************************************
* Copyright (c) 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/

package th;

/**
* This class can be used in testing to impersonate java.math.BigDecimal in order to
* verify that qualified class names are processed correctly. It is not intended to
* be complete or functional.
*/
public class BigDecimal extends Number implements Comparable<BigDecimal> {

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
/*******************************************************************************
* Copyright (c) 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/

package th;

/**
* This class can be used in testing to impersonate java.math.BigInteger in order to
* verify that qualified class names are processed correctly. It is not intended to
* be complete or functional.
*/
public class BigInteger extends Number implements Comparable<BigInteger> {

@Override
Expand Down

0 comments on commit c17a0b5

Please sign in to comment.