Startpunkten

This commit is contained in:
2026-03-05 13:43:17 +01:00
commit f54dd53c73
13 changed files with 679 additions and 0 deletions

20
Java_Database/Book.java Normal file
View File

@@ -0,0 +1,20 @@
/**
* This is a class called Book wich is
* a part of Element. So, each Element
* is a Book containing all the info
* about every Book.
*
* @author Christian Ohlsson, Karlstad university 1999
* @version 1.0.0
*/
public class Book extends Element {
int MAXAUTHORS = 5;
String subject;
String title;
String allAuthors;
String []author = new String [MAXAUTHORS];
String publisher;
String year;
}