]> git.mxchange.org Git - jcore.git/commit
Initial import, mostly from Addressbook project
authorRoland Haeder <roland@mxchange.org>
Thu, 6 Aug 2015 06:30:04 +0000 (08:30 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 6 Aug 2015 06:30:04 +0000 (08:30 +0200)
commit2f76d009395cf2c9603b981f8331a1f1761b1f8f
tree106fc702215ad981b82b247f49614dea64deb855
Initial import, mostly from Addressbook project

Signed-off-by: Roland Häder <roland@mxchange.org>
29 files changed:
.gitignore [new file with mode: 0644]
build.xml [new file with mode: 0644]
lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar [new file with mode: 0644]
lib/log4j-api-2.3.jar [new file with mode: 0644]
lib/log4j-core-2.3.jar [new file with mode: 0644]
lib/nblibraries.properties [new file with mode: 0644]
src/org/mxchange/jcore/BaseFrameworkSystem.java [new file with mode: 0644]
src/org/mxchange/jcore/FrameworkInterface.java [new file with mode: 0644]
src/org/mxchange/jcore/application/Application.java [new file with mode: 0644]
src/org/mxchange/jcore/client/BaseClient.java [new file with mode: 0644]
src/org/mxchange/jcore/client/Client.java [new file with mode: 0644]
src/org/mxchange/jcore/database/backend/BaseDatabaseBackend.java [new file with mode: 0644]
src/org/mxchange/jcore/database/backend/DatabaseBackend.java [new file with mode: 0644]
src/org/mxchange/jcore/database/backend/base64/Base64CsvDatabaseBackend.java [new file with mode: 0644]
src/org/mxchange/jcore/database/backend/mysql/MySqlDatabaseBackend.java [new file with mode: 0644]
src/org/mxchange/jcore/database/frontend/BaseDatabaseFrontend.java [new file with mode: 0644]
src/org/mxchange/jcore/database/frontend/DatabaseFrontend.java [new file with mode: 0644]
src/org/mxchange/jcore/database/storage/Storeable.java [new file with mode: 0644]
src/org/mxchange/jcore/database/storage/csv/StoreableCsv.java [new file with mode: 0644]
src/org/mxchange/jcore/exceptions/BadTokenException.java [new file with mode: 0644]
src/org/mxchange/jcore/exceptions/FrameAlreadyInitializedException.java [new file with mode: 0644]
src/org/mxchange/jcore/exceptions/UnhandledUserChoiceException.java [new file with mode: 0644]
src/org/mxchange/jcore/exceptions/UnsupportedDatabaseBackendException.java [new file with mode: 0644]
src/org/mxchange/jcore/exceptions/UnsupportedDatabaseDriverException.java [new file with mode: 0644]
src/org/mxchange/jcore/manager/BaseManager.java [new file with mode: 0644]
src/org/mxchange/jcore/manager/Manageable.java [new file with mode: 0644]
src/org/mxchange/jcore/manager/application/ApplicationManager.java [new file with mode: 0644]
src/org/mxchange/jcore/manager/application/ManageableApplication.java [new file with mode: 0644]
src/org/mxchange/jcore/model/BaseModel.java [new file with mode: 0644]