Set of multi-purpose Java libraries
top
Go to file
Robert Vokac c0f33eb1a5
Released 2.0.0
2023-07-01 13:10:28 +02:00
power-collections Released 2.0.0 2023-07-01 13:10:28 +02:00
power-core Released 2.0.0 2023-07-01 13:10:28 +02:00
power-db Released 2.0.0 2023-07-01 13:10:28 +02:00
power-io Released 2.0.0 2023-07-01 13:10:28 +02:00
power-json Released 2.0.0 2023-07-01 13:10:28 +02:00
power-log Released 2.0.0 2023-07-01 13:10:28 +02:00
power-mail Released 2.0.0 2023-07-01 13:10:28 +02:00
power-persistence Released 2.0.0 2023-07-01 13:10:28 +02:00
power-random Released 2.0.0 2023-07-01 13:10:28 +02:00
power-reflection Released 2.0.0 2023-07-01 13:10:28 +02:00
power-security Released 2.0.0 2023-07-01 13:10:28 +02:00
power-sql Released 2.0.0 2023-07-01 13:10:28 +02:00
power-template Released 2.0.0 2023-07-01 13:10:28 +02:00
power-text Released 2.0.0 2023-07-01 13:10:28 +02:00
power-time Released 2.0.0 2023-07-01 13:10:28 +02:00
power-utils Released 2.0.0 2023-07-01 13:10:28 +02:00
power-view Released 2.0.0 2023-07-01 13:10:28 +02:00
power-web Released 2.0.0 2023-07-01 13:10:28 +02:00
power-xml Released 2.0.0 2023-07-01 13:10:28 +02:00
.gitignore Initial commit 2023-03-18 09:10:11 +01:00
CHANGELOG.md Started working on power-framework 2.0.0 2023-04-08 17:37:17 +02:00
CREDITS Released: power-framework 1.0.0 2023-03-18 11:13:51 +01:00
LICENSE Released: power-framework 1.0.0 2023-03-18 11:13:51 +01:00
README.md Started working on power-framework 2.0.0 2023-04-08 17:37:17 +02:00
pom.xml Released 2.0.0 2023-07-01 13:10:28 +02:00

README.md

power-framework

Important notes to read first:

  1. This is a hobbyist project.
  2. This project is licenced as LGPL 2.1, which also means it is distributed without any warranty.
  3. In case, you find a bug or propose an improvement:
  • Raise an issue or participate a new discussion.

About

Power Framework is a Java library.

It contains several modules: view, collections, json, time, db, persistence, random, reflection, sql, xml and web and others.

View is an abstraction of JavaFX. Window class may be the most used class of this module and is used as a place for everything user sees. Window class uses custom decorations, system decorations are not used.

Collections contains full implementation of some collection type like linked list, queue, stack, list, map, set, properties, tree and others.

Json is used to represent json object and json array as a Java Object. Json files can be parsed to JsonObject instance. Every instance of JsonObject or JsonArray can be printed to minimal or pretty String.

DB is used to give abstraction for jdbc and SQLite, hides implementation. Database package can be used to store permanent data.

Persistence is used to dynamically manage SQLite database, create table ddl, insert, update and delete statements are automatically generated from Java classes using reflection. Persistence behaves maybe like the Hibernate library.

Random is used to generate pseudorandom numbers and is based on linear congruent function and using seeds.

Time contains some classes used to represent date and time without time zone information, universal date and time, date and time with time zone information. There are also some classes representing durations and period. Time module is partially an abstraction on Java SE time classes, but the interface to use it is a little different.

Reflection is a abstraction of Java SE reflection classes.

SQL generates sql Statements.

Xml is used to generate xml output by Java classes. Web uses xml and creates html pages.