Startpunkten
This commit is contained in:
20
Java_Database/Book.java
Normal file
20
Java_Database/Book.java
Normal 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;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user