Interface TableData
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
TableDataImpl
public interface TableData extends java.io.SerializableThe Interface TableData.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AreagetArea()AreaGets the area.BBoxgetBbox()BBoxGets the bbox.intgetColumn()Gets the column.java.util.List<java.lang.String>getContent()Gets the content.java.util.List<java.lang.String>getParagraphs()Gets the paragraphs.intgetRow()Gets the row.java.lang.StringgetStyle()Gets the style.java.lang.StringgetTitle()Gets the title.voidsetArea(Area area)AreaSets the area.voidsetBbox(BBox bbox)BBoxSets the bbox.voidsetColumn(int column)Sets the column.voidsetContent(java.util.List<java.lang.String> content)Sets the content.voidsetParagraphs(java.util.List<java.lang.String> paragraphs)Sets the paragraphs.voidsetRow(int row)Sets the row.voidsetStyle(java.lang.String style)Sets the style.voidsetTitle(java.lang.String title)Sets the title.
-
-
-
Method Detail
-
getTitle
java.lang.String getTitle()
Gets the title.- Returns:
- the title
-
setTitle
void setTitle(java.lang.String title)
Sets the title.- Parameters:
title- the new title
-
getStyle
java.lang.String getStyle()
Gets the style.- Returns:
- the style
-
setStyle
void setStyle(java.lang.String style)
Sets the style.- Parameters:
style- the new style
-
getColumn
int getColumn()
Gets the column.- Returns:
- the column
-
setColumn
void setColumn(int column)
Sets the column.- Parameters:
column- the new column
-
getRow
int getRow()
Gets the row.- Returns:
- the row
-
setRow
void setRow(int row)
Sets the row.- Parameters:
row- the new row
-
getParagraphs
java.util.List<java.lang.String> getParagraphs()
Gets the paragraphs.- Returns:
- the paragraphs
-
setParagraphs
void setParagraphs(java.util.List<java.lang.String> paragraphs)
Sets the paragraphs.- Parameters:
paragraphs- the new paragraphs
-
getContent
java.util.List<java.lang.String> getContent()
Gets the content.- Returns:
- the content
-
setContent
void setContent(java.util.List<java.lang.String> content)
Sets the content.- Parameters:
content- the new content
-
-