Library fixes + "make install" fix
[fanfix.git] / src / be / nikiroo / fanfix / data / MetaData.java
index 3980e96bc77b8ad359bee903381633daf832e3f4..76a9c7ba97f43c687e932692ecd5eff44a4bcda0 100644 (file)
@@ -21,6 +21,7 @@ public class MetaData {
        private String luid;
        private String lang;
        private String publisher;
+       private String type;
        private boolean imageDocument;
 
        /**
@@ -255,6 +256,25 @@ public class MetaData {
                this.publisher = publisher;
        }
 
+       /**
+        * The output type this {@link Story} is in.
+        * 
+        * @return the type the type
+        */
+       public String getType() {
+               return type;
+       }
+
+       /**
+        * The output type this {@link Story} is in.
+        * 
+        * @param type
+        *            the new type to set
+        */
+       public void setType(String type) {
+               this.type = type;
+       }
+
        /**
         * Document catering mostly to image files.
         *