Network server and Library + nikiroo-utils update
[nikiroo-utils.git] / src / be / nikiroo / fanfix / data / Paragraph.java
index e409c286ae2949be6242c772b6fb7a1783e6a51f..8a9130bf83fdcc8342a796f125a64a1aa994ea4c 100644 (file)
@@ -30,14 +30,18 @@ public class Paragraph {
        private String content;
        private long words;
 
+       /**
+        * Empty constructor, not to use.
+        */
+       private Paragraph() {
+               // for serialisation purposes
+       }
+
        /**
         * Create a new {@link Paragraph} with the given image.
         * 
-        * @param support
-        *            the support that will be used to fetch the image via
-        *            {@link Paragraph#getContentImage()}.
-        * @param content
-        *            the content image of this paragraph
+        * @param imageUrl
+        *            the image as an URL
         */
        public Paragraph(URL imageUrl) {
                this(ParagraphType.IMAGE, imageUrl.toString(), 0);