diff options
Diffstat (limited to 'Week9 Webshop/src/com/camilstaps/shop/DatabaseItem.java')
-rw-r--r-- | Week9 Webshop/src/com/camilstaps/shop/DatabaseItem.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Week9 Webshop/src/com/camilstaps/shop/DatabaseItem.java b/Week9 Webshop/src/com/camilstaps/shop/DatabaseItem.java new file mode 100644 index 0000000..0cbe661 --- /dev/null +++ b/Week9 Webshop/src/com/camilstaps/shop/DatabaseItem.java @@ -0,0 +1,15 @@ +/** + * Copyright (c) 2015 Camil Staps <info@camilstaps.nl> + * See the LICENSE file for copying permission. + */ + +package com.camilstaps.shop; + +import java.io.Serializable; + +/** + * DatabaseItem is a general class for anything that is stored in the Database + * @author Camil Staps, s4498062 + */ +public class DatabaseItem implements Serializable { +}
\ No newline at end of file |