X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Fdata%2FParagraph.java;h=d5a0f1c618ca6327c5602c1a7a1212c22dbfd6f8;hb=cfdaf6052ddc5ca44cf19f1f6d9f154cc8443024;hp=e7ef04581fc3b2d70c05d19d1b203971ba2136b2;hpb=9e2fad3600cd08eca73d45cb5c991d98095842aa;p=nikiroo-utils.git diff --git a/src/be/nikiroo/fanfix/data/Paragraph.java b/src/be/nikiroo/fanfix/data/Paragraph.java index e7ef045..d5a0f1c 100644 --- a/src/be/nikiroo/fanfix/data/Paragraph.java +++ b/src/be/nikiroo/fanfix/data/Paragraph.java @@ -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. * @@ -23,7 +27,19 @@ public class Paragraph implements Cloneable { /** Quotation (dialogue) */ QUOTE, /** An image (no text) */ - IMAGE, + IMAGE, ; + + /** + * This paragraph type is of a text kind (quote or not). + * + * @param allowEmpty + * allow empty text as text, too (blanks, breaks...) + * @return TRUE if it is + */ + public boolean isText(boolean allowEmpty) { + return (this == NORMAL || this == QUOTE) + || (allowEmpty && (this == BLANK || this == BREAK)); + } } private ParagraphType type; @@ -113,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}. *