https://github.com/borededdy/javin
JavIN is a complete input class for your Java Projects, always updated and simple to use
https://github.com/borededdy/javin
java java-class java-classes java-input
Last synced: 2 months ago
JSON representation
JavIN is a complete input class for your Java Projects, always updated and simple to use
- Host: GitHub
- URL: https://github.com/borededdy/javin
- Owner: Borededdy
- License: gpl-2.0
- Created: 2023-02-27T16:17:00.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T08:22:29.000Z (about 2 years ago)
- Last Synced: 2023-11-15T15:47:33.856Z (over 1 year ago)
- Topics: java, java-class, java-classes, java-input
- Language: Java
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JavIN
JavIN is a complete input class for your Java Projects, always updated and simple to use## Upload JavIN into your project
First upload the JavIN.java file in your project folder, then, open the JavIN file in your editor and modify the package name:
As you will see, in the JavIN file the package looks like this:```java
package //!! Insert your package name here !!;
```You will need to modify that with the name of YOUR package.
After this, move to the other class where you want to use JavIN to input data into variables and create an object:
```java
JavIN in = new JavIN();
```Now you should be able to use it like this:
```java
var = in.inINT();
//or
var = in.inDOUBLE();
//or
var = in.inSTR();
//ecc...
```