From 5ec4eef4893ab166fd9be32f8c142a799cb33516 Mon Sep 17 00:00:00 2001 From: Puranjay Savar Mattas Date: Wed, 3 Sep 2025 10:05:15 +0000 Subject: [PATCH] Giteafy the repo Signed-off-by: Puranjay Savar Mattas --- README.MD | 118 +++++++++++++++++++++++++++--------------------------- 1 file changed, 59 insertions(+), 59 deletions(-) diff --git a/README.MD b/README.MD index 4802a30..20834d3 100644 --- a/README.MD +++ b/README.MD @@ -24,33 +24,33 @@ if the problem still persist then create a issue or use Google/Stack Overlflow f |Serial No.|Program Name|Description of the program| |----------|------------|--------------------------| -|1 | [HelloWorld.java](https://github.com/psavarmattas/Java-Projects/blob/master/HelloWorld.java) | Program to print out "Hello World" | -|2 | [EvenOdd.java](https://github.com/psavarmattas/Java-Projects/blob/master/EvenOdd.java) | Program to find out the number entered is Even/Odd (Static Method). | -|3 | [EvenOddDynamic.java](https://github.com/psavarmattas/Java-Projects/blob/master/EvenOddDynamic.java) | Program to find out the number entered is Even/Odd (Dynamic Method). | -|4 | [LargestNumberStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/LargestNumberStatic.java) | Program to find out the largest number (Static Method). | -|5 | [LargestNumber.java](https://github.com/psavarmattas/Java-Projects/blob/master/LargestNumber.java) | Program to find out the largest number (Dynamic Method). | -|6 | [PrimeOrNotStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/PrimeNoStatic.java) | Program to find out the prime or not (Static Method). | -|7 | [PrimeOrNot.java](https://github.com/psavarmattas/Java-Projects/blob/master/PrimeOrNot.java) | Program to find out the prime or not (Dynamic Method). | -|8 | [PrimeNoStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/PrimeNoStatic.java) | Program to display first n Prime number (Static Method). | -|9 | [PrimeNo.java](https://github.com/psavarmattas/Java-Projects/blob/master/PrimeNo.java) | Program to display first n Prime number (Dynamic Method). | -|10 | [FibonacciSeriesStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/FibonacciSeriesStatic.java) | Program to generate fibonacci series upto n value (Static Method). | -|11 | [FibonacciSeries.java](https://github.com/psavarmattas/Java-Projects/blob/master/FibonacciSeries.java) | Program to generate fibonacci series upto n value (Dynamic Method). | -|12 | [RootsOfQuadracticEquationStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/RootsOfQuadraticEquationStatic.java) | Program to find the root of quadratic equation (Static Method). | -|13 | [RootsOfQuadracticEquation.java](https://github.com/psavarmattas/Java-Projects/blob/master/RootsOfQuadraticEquation.java) | Program to find the root of quadratic equation (Dynamic Method). | -|14 | [Calculator](https://github.com/psavarmattas/Java-Projects/blob/master/Calculator.java) | Program that implements the arithmetic operation (Calculator) using switch statement. -|15 | [ArithmeticOperations.java](https://github.com/psavarmattas/Java-Projects/blob/master/ArithmeticOperations.java) | Program to print the sum (addition), multiply, subtract, divide and remainder of two numbers. | -|16 | [InputFromKeyBoard.java](https://github.com/psavarmattas/Java-Projects/blob/master/InputFromKeyBoard.java) | Program to demonstrate input from keyboard using Scanner. | -|17 | [FirstNonRepeatingStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/FirstNonRepeatingStatic.java) | Program to find first non-repeating character in a string (Static Method). | -|18 | [FirstNonRepeating.java](https://github.com/psavarmattas/Java-Projects/blob/master/FirstNonRepeating.java) | Program to find first non-repeating character in a string (Dynamic Method). | -|19 | [OccuringCharacters.java](https://github.com/psavarmattas/Java-Projects/blob/master/OccuringCharacters.java) | Program to find the maximum occurring character in a string. | -|20 | [MethodOverride.java](https://github.com/psavarmattas/Java-Projects/blob/master/MethodOverloading.java) | Program in java to demonstrate method overloading. | -|21 | [Voter.java](https://github.com/psavarmattas/Java-Projects/blob/master/Voter.java) | Program to store Voter detail as voter id, voter name & monthly income for a voter in a class. Compute annual income & display the detail. Use parameterized constructor. | -|22 | [ChainConstructor.java](https://github.com/psavarmattas/Java-Projects/blob/master/ChainConstructor.java) | Program in java to demonstrate chain constructor. | -|23 | [OddEvenNumberOutput.java](https://github.com/psavarmattas/Java-Projects/blob/master/OddEvenNumberOutput.java) | Program to accept a number and check the number is even or not. Prints 1 if the number is even or 0 if the number is odd. | -|24 | [CommandLineInput.java](https://github.com/psavarmattas/Java-Projects/blob/master/CommandLineInput.java) | Program in java to demonstrate input from keyboard using Comand Line Argument. | -|25 | [ThreeInteger.java](https://github.com/psavarmattas/Java-Projects/blob/master/ThreeInteger.java) | Program that accepts three integers from the user and return true if the second number is greater than first number and third number is greater than second number. If "abc" is true second number does not need to be greater than first number. | -|26 | [MultiLevelInheritance.java](https://github.com/psavarmattas/Java-Projects/blob/master/MultiLevelInheritance.java) | Program in java to demonstrate multilevel inheritance in java. | -|27 | [AbstractClassProgram](https://github.com/psavarmattas/Java-Projects/blob/master/AbstractClassProgram.java) | Program to create an abstract class named Shape that contains two integers and an empty method named print Area (). Provide three classes named Rectangle, Triangle and Circle such that each one of the classes extends the class Shape. Each one of the classes contains only the method print Area () that prints the area of the given shape. | +|1 | [HelloWorld.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/HelloWorld.java) | Program to print out "Hello World" | +|2 | [EvenOdd.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/EvenOdd.java) | Program to find out the number entered is Even/Odd (Static Method). | +|3 | [EvenOddDynamic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/EvenOddDynamic.java) | Program to find out the number entered is Even/Odd (Dynamic Method). | +|4 | [LargestNumberStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/LargestNumberStatic.java) | Program to find out the largest number (Static Method). | +|5 | [LargestNumber.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/LargestNumber.java) | Program to find out the largest number (Dynamic Method). | +|6 | [PrimeOrNotStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/PrimeNoStatic.java) | Program to find out the prime or not (Static Method). | +|7 | [PrimeOrNot.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/PrimeOrNot.java) | Program to find out the prime or not (Dynamic Method). | +|8 | [PrimeNoStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/PrimeNoStatic.java) | Program to display first n Prime number (Static Method). | +|9 | [PrimeNo.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/PrimeNo.java) | Program to display first n Prime number (Dynamic Method). | +|10 | [FibonacciSeriesStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/FibonacciSeriesStatic.java) | Program to generate fibonacci series upto n value (Static Method). | +|11 | [FibonacciSeries.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/FibonacciSeries.java) | Program to generate fibonacci series upto n value (Dynamic Method). | +|12 | [RootsOfQuadracticEquationStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/RootsOfQuadraticEquationStatic.java) | Program to find the root of quadratic equation (Static Method). | +|13 | [RootsOfQuadracticEquation.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/RootsOfQuadraticEquation.java) | Program to find the root of quadratic equation (Dynamic Method). | +|14 | [Calculator](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/Calculator.java) | Program that implements the arithmetic operation (Calculator) using switch statement. +|15 | [ArithmeticOperations.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/ArithmeticOperations.java) | Program to print the sum (addition), multiply, subtract, divide and remainder of two numbers. | +|16 | [InputFromKeyBoard.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/InputFromKeyBoard.java) | Program to demonstrate input from keyboard using Scanner. | +|17 | [FirstNonRepeatingStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/FirstNonRepeatingStatic.java) | Program to find first non-repeating character in a string (Static Method). | +|18 | [FirstNonRepeating.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/FirstNonRepeating.java) | Program to find first non-repeating character in a string (Dynamic Method). | +|19 | [OccuringCharacters.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/OccuringCharacters.java) | Program to find the maximum occurring character in a string. | +|20 | [MethodOverride.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/MethodOverloading.java) | Program in java to demonstrate method overloading. | +|21 | [Voter.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/Voter.java) | Program to store Voter detail as voter id, voter name & monthly income for a voter in a class. Compute annual income & display the detail. Use parameterized constructor. | +|22 | [ChainConstructor.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/ChainConstructor.java) | Program in java to demonstrate chain constructor. | +|23 | [OddEvenNumberOutput.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/OddEvenNumberOutput.java) | Program to accept a number and check the number is even or not. Prints 1 if the number is even or 0 if the number is odd. | +|24 | [CommandLineInput.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/CommandLineInput.java) | Program in java to demonstrate input from keyboard using Comand Line Argument. | +|25 | [ThreeInteger.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/ThreeInteger.java) | Program that accepts three integers from the user and return true if the second number is greater than first number and third number is greater than second number. If "abc" is true second number does not need to be greater than first number. | +|26 | [MultiLevelInheritance.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/MultiLevelInheritance.java) | Program in java to demonstrate multilevel inheritance in java. | +|27 | [AbstractClassProgram](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/AbstractClassProgram.java) | Program to create an abstract class named Shape that contains two integers and an empty method named print Area (). Provide three classes named Rectangle, Triangle and Circle such that each one of the classes extends the class Shape. Each one of the classes contains only the method print Area () that prints the area of the given shape. | @@ -58,40 +58,40 @@ if the problem still persist then create a issue or use Google/Stack Overlflow f |Level No.|Program Name|Description of the program| |----------|------------|--------------------------| -|1 | [HelloWorld.java](https://github.com/psavarmattas/Java-Projects/blob/master/HelloWorld.java) | Program to print out "Hello World" | -|1 | [EvenOdd.java](https://github.com/psavarmattas/Java-Projects/blob/master/EvenOdd.java) | Program to find out the number entered is Even/Odd (Static Method). | -|1 | [InputFromKeyBoard.java](https://github.com/psavarmattas/Java-Projects/blob/master/InputFromKeyBoard.java) | Program to demonstrate input from keyboard using Command line argument. | -|1 | [LargestNumberStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/LargestNumberStatic.java) | Program to find out the largest number (Static Method). | -|1 | [PrimeOrNotStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/PrimeNoStatic.java) | Program to find out the prime or not (Static Method). | -|1 | [PrimeNoStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/PrimeNoStatic.java) | Program to display first n Prime number (Static Method). | -|1 | [FibonacciSeriesStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/FibonacciSeriesStatic.java) | Program to generate fibonacci series upto n value (Static Method). | -|1 | [RootsOfQuadracticEquationStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/RootsOfQuadraticEquationStatic.javav) | Program to find the root of quadratic equation (Static Method). | -|1 | [FirstNonRepeatingStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/FirstNonRepeatingStatic.java) | Program to find first non-repeating character in a string (Static Method). | -|1 | [InputFromKeyBoard.java](https://github.com/psavarmattas/Java-Projects/blob/master/InputFromKeyBoard.java) | Program to demonstrate input from keyboard using Scanner. | -|1 | [FirstNonRepeatingStatic.java](https://github.com/psavarmattas/Java-Projects/blob/master/FirstNonRepeatingStatic.java) | Program to find first non-repeating character in a string (Static Method). | -|1 | [OccuringCharacters.java](https://github.com/psavarmattas/Java-Projects/blob/master/OccuringCharacters.java) | Program to find the maximum occurring character in a string. | -|1 | [OddEvenNumberOutput.java](https://github.com/psavarmattas/Java-Projects/blob/master/OddEvenNumberOutput.java) | Program to accept a number and check the number is even or not. Prints 1 if the number is even or 0 if the number is odd. | -|1 | [CommandLineInput.java](https://github.com/psavarmattas/Java-Projects/blob/master/CommandLineInput.java) | Program in java to demonstrate input from keyboard using Comand Line Argument. | -|2 | [EvenOddDynamic.java](https://github.com/psavarmattas/Java-Projects/blob/master/EvenOddDynamic.java) | Program to find out the number entered is Even/Odd (Dynamic Method). | -|2 | [ArithmeticOperations.java](https://github.com/psavarmattas/Java-Projects/blob/master/ArithmeticOperations.java) | Program to print the sum (addition), multiply, subtract, divide and remainder of two numbers | -|2 | [LargestNumber.java](https://github.com/psavarmattas/Java-Projects/blob/master/LargestNumber.java) | Program to find out the largest number (Dynamic Method). | -|2 | [PrimeOrNot.java](https://github.com/psavarmattas/Java-Projects/blob/master/PrimeOrNot.java) | Program to find out the prime or not (Dynamic Method). | -|2 | [PrimeNo.java](https://github.com/psavarmattas/Java-Projects/blob/master/PrimeNo.java) | Program to display first n Prime number (Dynamic Method). | -|2 | [FibonacciSeries.java](https://github.com/psavarmattas/Java-Projects/blob/master/FibonacciSeries.java) | Program to generate fibonacci series upto n value (Dynamic Method). | -|2 | [RootsOfQuadracticEquation.java](https://github.com/psavarmattas/Java-Projects/blob/master/RootsOfQuadraticEquation.java) | Program to find the root of quadratic equation (Dynamic Method). | -|2 | [FirstNonRepeating.java](https://github.com/psavarmattas/Java-Projects/blob/master/FirstNonRepeating.java) | Program to find first non-repeating character in a string (Dynamic Method). | -|2 | [ArithmeticOperations.java](https://github.com/psavarmattas/Java-Projects/blob/master/ArithmeticOperations.java) | Program to print the sum (addition), multiply, subtract, divide and remainder of two numbers. | -|2 | [FirstNonRepeating.java](https://github.com/psavarmattas/Java-Projects/blob/master/FirstNonRepeating.java) | Program to find first non-repeating character in a string (Dynamic Method). | -|2 | [MethodOverride.java](https://github.com/psavarmattas/Java-Projects/blob/master/MethodOverloading.java) | Program in java to demonstrate method overloading. | -|2 | [Voter.java](https://github.com/psavarmattas/Java-Projects/blob/master/Voter.java) | Program to store Voter detail as voter id, voter name & monthly income for a voter in a class. Compute annual income & display the detail. Use parameterized constructor. | -|2 | [ChainConstructor.java](https://github.com/psavarmattas/Java-Projects/blob/master/ChainConstructor.java) | Program in java to demonstrate chain constructor. | -|2 | [ThreeInteger.java](https://github.com/psavarmattas/Java-Projects/blob/master/ThreeInteger.java) | Program that accepts three integers from the user and return true if the second number is greater than first number and third number is greater than second number. If "abc" is true second number does not need to be greater than first number. | -|2 | [MultiLevelInheritance.java](https://github.com/psavarmattas/Java-Projects/blob/master/MultiLevelInheritance.java) | Program in java to demonstrate multilevel inheritance in java. | -|3 | [Calculator](https://github.com/psavarmattas/Java-Projects/blob/master/Calculator.java) | Program that implements the arithmetic operation (Calculator) using switch statement. | -|3 | [AbstractClassProgram](https://github.com/psavarmattas/Java-Projects/blob/master/AbstractClassProgram.java) | Program to create an abstract class named Shape that contains two integers and an empty method named print Area (). Provide three classes named Rectangle, Triangle and Circle such that each one of the classes extends the class Shape. Each one of the classes contains only the method print Area () that prints the area of the given shape. | +|1 | [HelloWorld.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/HelloWorld.java) | Program to print out "Hello World" | +|1 | [EvenOdd.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/EvenOdd.java) | Program to find out the number entered is Even/Odd (Static Method). | +|1 | [InputFromKeyBoard.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/InputFromKeyBoard.java) | Program to demonstrate input from keyboard using Command line argument. | +|1 | [LargestNumberStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/LargestNumberStatic.java) | Program to find out the largest number (Static Method). | +|1 | [PrimeOrNotStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/PrimeNoStatic.java) | Program to find out the prime or not (Static Method). | +|1 | [PrimeNoStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/PrimeNoStatic.java) | Program to display first n Prime number (Static Method). | +|1 | [FibonacciSeriesStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/FibonacciSeriesStatic.java) | Program to generate fibonacci series upto n value (Static Method). | +|1 | [RootsOfQuadracticEquationStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/RootsOfQuadraticEquationStatic.javav) | Program to find the root of quadratic equation (Static Method). | +|1 | [FirstNonRepeatingStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/FirstNonRepeatingStatic.java) | Program to find first non-repeating character in a string (Static Method). | +|1 | [InputFromKeyBoard.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/InputFromKeyBoard.java) | Program to demonstrate input from keyboard using Scanner. | +|1 | [FirstNonRepeatingStatic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/FirstNonRepeatingStatic.java) | Program to find first non-repeating character in a string (Static Method). | +|1 | [OccuringCharacters.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/OccuringCharacters.java) | Program to find the maximum occurring character in a string. | +|1 | [OddEvenNumberOutput.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/OddEvenNumberOutput.java) | Program to accept a number and check the number is even or not. Prints 1 if the number is even or 0 if the number is odd. | +|1 | [CommandLineInput.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/CommandLineInput.java) | Program in java to demonstrate input from keyboard using Comand Line Argument. | +|2 | [EvenOddDynamic.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/EvenOddDynamic.java) | Program to find out the number entered is Even/Odd (Dynamic Method). | +|2 | [ArithmeticOperations.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/ArithmeticOperations.java) | Program to print the sum (addition), multiply, subtract, divide and remainder of two numbers | +|2 | [LargestNumber.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/LargestNumber.java) | Program to find out the largest number (Dynamic Method). | +|2 | [PrimeOrNot.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/PrimeOrNot.java) | Program to find out the prime or not (Dynamic Method). | +|2 | [PrimeNo.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/PrimeNo.java) | Program to display first n Prime number (Dynamic Method). | +|2 | [FibonacciSeries.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/FibonacciSeries.java) | Program to generate fibonacci series upto n value (Dynamic Method). | +|2 | [RootsOfQuadracticEquation.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/RootsOfQuadraticEquation.java) | Program to find the root of quadratic equation (Dynamic Method). | +|2 | [FirstNonRepeating.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/FirstNonRepeating.java) | Program to find first non-repeating character in a string (Dynamic Method). | +|2 | [ArithmeticOperations.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/ArithmeticOperations.java) | Program to print the sum (addition), multiply, subtract, divide and remainder of two numbers. | +|2 | [FirstNonRepeating.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/FirstNonRepeating.java) | Program to find first non-repeating character in a string (Dynamic Method). | +|2 | [MethodOverride.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/MethodOverloading.java) | Program in java to demonstrate method overloading. | +|2 | [Voter.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/Voter.java) | Program to store Voter detail as voter id, voter name & monthly income for a voter in a class. Compute annual income & display the detail. Use parameterized constructor. | +|2 | [ChainConstructor.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/ChainConstructor.java) | Program in java to demonstrate chain constructor. | +|2 | [ThreeInteger.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/ThreeInteger.java) | Program that accepts three integers from the user and return true if the second number is greater than first number and third number is greater than second number. If "abc" is true second number does not need to be greater than first number. | +|2 | [MultiLevelInheritance.java](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/MultiLevelInheritance.java) | Program in java to demonstrate multilevel inheritance in java. | +|3 | [Calculator](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/Calculator.java) | Program that implements the arithmetic operation (Calculator) using switch statement. | +|3 | [AbstractClassProgram](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/AbstractClassProgram.java) | Program to create an abstract class named Shape that contains two integers and an empty method named print Area (). Provide three classes named Rectangle, Triangle and Circle such that each one of the classes extends the class Shape. Each one of the classes contains only the method print Area () that prints the area of the given shape. | -## [License](https://github.com/psavarmattas/Java-Projects/blob/master/LICENSE): +## [License](https://git.psmattas.com/psmattas/Java-Projects/src/branch/master/LICENSE): Copyright (c) 2021 PSMForums. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. \ No newline at end of file