Simple library
A collection of classes for use in various projects.
Eclipse was used for development. The program is written using Java and Swing. Java 11 is used, but for such a simple program the Java version does not matter.
In Eclipse, select "Import..." from the "File" menu. In the window that opens, select "Existing projects into workspace." Navigate to the folder with the downloaded repository and click "Finish." The project will open in Eclipse.
Download the repository to your computer. The ready-to-use library is located in the app folder. You should include this library in the project you're creating and specify in the project's module-info file: requires game.weekend.simplelibrary;.
The doc folder contains documentation generated by the javadoc utility. The library is very simple, so you can simply browse its component classes. However, the best documentation is provided by the examples of using the library classes in the BankViewer application. In this application, all library classes are located in the game.weekend.simplelibrary package and are not implemented as a standalone module.
I hope that the library will make it easier to develop future projects.