weblib: use more templats
[nikiroo-utils.git] / src / be / nikiroo / fanfix / data / Paragraph.java
index 0ed61fbb614f494725ebbc0f1c632a7ffcd7a29a..d5a0f1c618ca6327c5602c1a7a1212c22dbfd6f8 100644 (file)
@@ -1,5 +1,7 @@
 package be.nikiroo.fanfix.data;
 
+import java.io.Serializable;
+
 import be.nikiroo.utils.Image;
 
 /**
@@ -7,7 +9,9 @@ import be.nikiroo.utils.Image;
  * 
  * @author niki
  */
-public class Paragraph implements Cloneable {
+public class Paragraph implements Cloneable, Serializable {
+       private static final long serialVersionUID = 1L;
+
        /**
         * A paragraph type, that will dictate how the paragraph will be handled.
         * 
@@ -125,6 +129,16 @@ public class Paragraph implements Cloneable {
                return contentImage;
        }
 
+       /**
+        * The content of this {@link Paragraph} if it is an image.
+        * 
+        * @param contentImage
+        *            the content
+        */
+       public void setContentImage(Image contentImage) {
+               this.contentImage = contentImage;
+       }
+       
        /**
         * The number of words (or images) in this {@link Paragraph}.
         *