From 6c2ec72fcf7c9f49205ebaec425955ecc122bd6c Mon Sep 17 00:00:00 2001 From: Servicepoint Date: Tue, 28 Oct 2014 17:27:29 +0100 Subject: [PATCH] =?UTF-8?q?Readme=20mit=20Lizenzen=20f=C3=BCr=20die=20SQL-?= =?UTF-8?q?JDBC=20aktualisiert=20und=20Klassen=20f=C3=BCr=20die=20beiden?= =?UTF-8?q?=20fehlenden=20Tabs=20erzeugt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 ++++++++- src/de/katho/kBorrow/gui/MainWindow.java | 2 ++ .../katho/kBorrow/gui/ManageLendingTab.java | 22 +++++++++++++++++++ src/de/katho/kBorrow/gui/NewLendingTab.java | 22 +++++++++++++++++++ 4 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 src/de/katho/kBorrow/gui/ManageLendingTab.java create mode 100644 src/de/katho/kBorrow/gui/NewLendingTab.java diff --git a/README.md b/README.md index 0e9b4ac..0034d2a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ # README -kBorrow is going to be a simple application to manage items that have been borrowed from the it department of the Catholic University of Applied Sciences in Paderborn. \ No newline at end of file +kBorrow is going to be a simple application to manage items that have been borrowed from the it department of the Catholic University of Applied Sciences in Paderborn. + +## Licenses + +### Xerial Sqlite JDBC +This software uses the Xerial SQLite JDBC (https://bitbucket.org/xerial/sqlite-jdbc). The SQLite JDBC follows the Apache License Version 2.0 (http://www.apache.org/licenses/) + +### MySQL Connector +This software uses the Oracle MySQL Java Connector (http://dev.mysql.com/downloads/connector/j/). The MySQL Java Connector is provided under the GPL License Version 2.0 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html). \ No newline at end of file diff --git a/src/de/katho/kBorrow/gui/MainWindow.java b/src/de/katho/kBorrow/gui/MainWindow.java index b6dda0e..55dccfa 100644 --- a/src/de/katho/kBorrow/gui/MainWindow.java +++ b/src/de/katho/kBorrow/gui/MainWindow.java @@ -50,6 +50,8 @@ public class MainWindow { this.tabbedPane = new JTabbedPane(JTabbedPane.TOP); this.frame.getContentPane().add(this.tabbedPane, BorderLayout.CENTER); + this.tabbedPane.addTab("Neue Ausleihe", new NewLendingTab(this.dbCon)); + this.tabbedPane.addTab("Ausleihen verwalten", new ManageLendingTab(this.dbCon)); this.tabbedPane.addTab("Artikel verwalten", new ArticleTab(this.dbCon)); this.tabbedPane.addTab("Benutzer verwalten", new UserTab(this.dbCon)); } diff --git a/src/de/katho/kBorrow/gui/ManageLendingTab.java b/src/de/katho/kBorrow/gui/ManageLendingTab.java new file mode 100644 index 0000000..b855e1f --- /dev/null +++ b/src/de/katho/kBorrow/gui/ManageLendingTab.java @@ -0,0 +1,22 @@ +package de.katho.kBorrow.gui; + +import javax.swing.JPanel; + +import de.katho.kBorrow.db.DbConnector; + +public class ManageLendingTab extends JPanel { + + /** + * + */ + private static final long serialVersionUID = -1559803834099586468L; + + /** + * Create the panel. + * @param dbCon + */ + public ManageLendingTab(DbConnector dbCon) { + + } + +} diff --git a/src/de/katho/kBorrow/gui/NewLendingTab.java b/src/de/katho/kBorrow/gui/NewLendingTab.java new file mode 100644 index 0000000..fd24589 --- /dev/null +++ b/src/de/katho/kBorrow/gui/NewLendingTab.java @@ -0,0 +1,22 @@ +package de.katho.kBorrow.gui; + +import javax.swing.JPanel; + +import de.katho.kBorrow.db.DbConnector; + +public class NewLendingTab extends JPanel { + + /** + * + */ + private static final long serialVersionUID = -7346953418572781322L; + + /** + * Create the panel. + * @param dbCon + */ + public NewLendingTab(DbConnector dbCon) { + + } + +}