Interface Paragraph
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ParagraphImpl
public interface Paragraph extends java.io.SerializableThe Interface Paragraph.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AreagetArea()AreaGets the area.BBoxgetBbox()BBoxGets the bbox.java.util.List<Content>getContent()ContentGets the content list.intgetSequence()Gets the sequence.voidsetArea(Area area)AreaSets the area.voidsetBbox(BBox bbox)BBoxSets the bbox.voidsetContent(java.util.List<Content> content)ContentSets the content.voidsetSequence(int sequence)Sets the sequence.
-
-
-
Method Detail
-
getSequence
int getSequence()
Gets the sequence.- Returns:
- the sequence
-
setSequence
void setSequence(int sequence)
Sets the sequence.- Parameters:
sequence- the new sequence
-
getContent
java.util.List<Content> getContent()
ContentGets the content list.- Returns:
- the content list
- See Also:
Content
-
-