X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Fdata%2FParagraph.java;h=91e95f8bd791f545ce185c5c194c843ff0e4dbe8;hb=aa8b74a318769354c5cb512ead428beb372503a2;hp=273aca3af7884f4ed3de556b84837465b151015f;hpb=c8faa52a7993d29944e505b517619de44ac58279;p=nikiroo-utils.git diff --git a/src/be/nikiroo/fanfix/data/Paragraph.java b/src/be/nikiroo/fanfix/data/Paragraph.java index 273aca3..91e95f8 100644 --- a/src/be/nikiroo/fanfix/data/Paragraph.java +++ b/src/be/nikiroo/fanfix/data/Paragraph.java @@ -1,13 +1,13 @@ package be.nikiroo.fanfix.data; -import java.net.URL; +import be.nikiroo.utils.Image; /** * A paragraph in a chapter of the story. * * @author niki */ -public class Paragraph { +public class Paragraph implements Cloneable { /** * A paragraph type, that will dictate how the paragraph will be handled. * @@ -28,6 +28,7 @@ public class Paragraph { private ParagraphType type; private String content; + private Image contentImage; private long words; /** @@ -41,11 +42,12 @@ public class Paragraph { /** * Create a new {@link Paragraph} with the given image. * - * @param imageUrl - * the image as an URL + * @param contentImage + * the image */ - public Paragraph(URL imageUrl) { - this(ParagraphType.IMAGE, imageUrl.toString(), 1); + public Paragraph(Image contentImage) { + this(ParagraphType.IMAGE, null, 1); + this.contentImage = contentImage; } /** @@ -84,7 +86,7 @@ public class Paragraph { } /** - * The content of this {@link Paragraph}. + * The content of this {@link Paragraph} if it is not an image. * * @return the content */ @@ -102,6 +104,15 @@ public class Paragraph { this.content = content; } + /** + * The content of this {@link Paragraph} if it is an image. + * + * @return the content + */ + public Image getContentImage() { + return contentImage; + } + /** * The number of words (or images) in this {@link Paragraph}. * @@ -128,4 +139,17 @@ public class Paragraph { public String toString() { return String.format("%s: [%s]", "" + type, "" + content); } + + @Override + public Paragraph clone() { + Paragraph para = null; + try { + para = (Paragraph) super.clone(); + } catch (CloneNotSupportedException e) { + // Did the clones rebel? + System.err.println(e); + } + + return para; + } }