aboutsummaryrefslogtreecommitdiff
path: root/src/uk/org/ury/show/ShowItem.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/uk/org/ury/show/ShowItem.java')
-rw-r--r--src/uk/org/ury/show/ShowItem.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/uk/org/ury/show/ShowItem.java b/src/uk/org/ury/show/ShowItem.java
new file mode 100644
index 0000000..be65c80
--- /dev/null
+++ b/src/uk/org/ury/show/ShowItem.java
@@ -0,0 +1,25 @@
+/**
+ *
+ */
+package uk.org.ury.show;
+
+
+import java.util.Map;
+
+import uk.org.ury.database.DatabaseItem;
+
+
+/**
+ * An item in the show database.
+ *
+ * @author Matt Windsor
+ */
+
+public class ShowItem extends DatabaseItem<ShowItemProperty, String>
+{
+ public
+ ShowItem (Map<ShowItemProperty, String> properties)
+ {
+ super (properties);
+ }
+}