Readme mit Lizenzen für die SQL-JDBC aktualisiert und Klassen für die
beiden fehlenden Tabs erzeugt.
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
# README
|
# 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.
|
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).
|
||||||
@@ -50,6 +50,8 @@ public class MainWindow {
|
|||||||
this.tabbedPane = new JTabbedPane(JTabbedPane.TOP);
|
this.tabbedPane = new JTabbedPane(JTabbedPane.TOP);
|
||||||
this.frame.getContentPane().add(this.tabbedPane, BorderLayout.CENTER);
|
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("Artikel verwalten", new ArticleTab(this.dbCon));
|
||||||
this.tabbedPane.addTab("Benutzer verwalten", new UserTab(this.dbCon));
|
this.tabbedPane.addTab("Benutzer verwalten", new UserTab(this.dbCon));
|
||||||
}
|
}
|
||||||
|
|||||||
22
src/de/katho/kBorrow/gui/ManageLendingTab.java
Normal file
22
src/de/katho/kBorrow/gui/ManageLendingTab.java
Normal file
@@ -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) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
22
src/de/katho/kBorrow/gui/NewLendingTab.java
Normal file
22
src/de/katho/kBorrow/gui/NewLendingTab.java
Normal file
@@ -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) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user