X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Fdata%2FParagraph.java;h=273aca3af7884f4ed3de556b84837465b151015f;hb=62c63b0724f4bc45999cb2e7186b4b3ada479a0a;hp=e409c286ae2949be6242c772b6fb7a1783e6a51f;hpb=793f1071fae48daed3b545a03a286c85e527d244;p=nikiroo-utils.git diff --git a/src/be/nikiroo/fanfix/data/Paragraph.java b/src/be/nikiroo/fanfix/data/Paragraph.java index e409c28..273aca3 100644 --- a/src/be/nikiroo/fanfix/data/Paragraph.java +++ b/src/be/nikiroo/fanfix/data/Paragraph.java @@ -30,17 +30,22 @@ public class Paragraph { private String content; private long words; + /** + * Empty constructor, not to use. + */ + @SuppressWarnings("unused") + 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); + this(ParagraphType.IMAGE, imageUrl.toString(), 1); } /** @@ -51,7 +56,7 @@ public class Paragraph { * @param content * the content of this paragraph * @param words - * the number of words + * the number of words (or images) */ public Paragraph(ParagraphType type, String content, long words) { this.type = type; @@ -98,7 +103,7 @@ public class Paragraph { } /** - * The number of words in this {@link Paragraph}. + * The number of words (or images) in this {@link Paragraph}. * * @return the number of words */ @@ -107,7 +112,7 @@ public class Paragraph { } /** - * The number of words in this {@link Paragraph}. + * The number of words (or images) in this {@link Paragraph}. * * @param words * the number of words to set