Class TableDataImpl
- java.lang.Object
-
- com.priint.pubserver.metadata.xml.element.TableDataImpl
-
- All Implemented Interfaces:
TableData,java.io.Serializable
public class TableDataImpl extends java.lang.Object implements java.io.Serializable, TableData
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TableDataImpl()
-
Method Summary
All Methods Instance Methods Concrete 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
public java.lang.String getTitle()
Description copied from interface:TableDataGets the title.
-
setTitle
public void setTitle(java.lang.String title)
Description copied from interface:TableDataSets the title.
-
getStyle
public java.lang.String getStyle()
Description copied from interface:TableDataGets the style.
-
setStyle
public void setStyle(java.lang.String style)
Description copied from interface:TableDataSets the style.
-
getColumn
public int getColumn()
Description copied from interface:TableDataGets the column.
-
setColumn
public void setColumn(int column)
Description copied from interface:TableDataSets the column.
-
getRow
public int getRow()
Description copied from interface:TableDataGets the row.
-
setRow
public void setRow(int row)
Description copied from interface:TableDataSets the row.
-
setBbox
public void setBbox(BBox bbox)
Description copied from interface:TableDataBBoxSets the bbox.
-
setArea
public void setArea(Area area)
Description copied from interface:TableDataAreaSets the area.
-
getParagraphs
public java.util.List<java.lang.String> getParagraphs()
Description copied from interface:TableDataGets the paragraphs.- Specified by:
getParagraphsin interfaceTableData- Returns:
- the paragraphs
-
setParagraphs
public void setParagraphs(java.util.List<java.lang.String> paragraphs)
Description copied from interface:TableDataSets the paragraphs.- Specified by:
setParagraphsin interfaceTableData- Parameters:
paragraphs- the new paragraphs
-
getContent
public java.util.List<java.lang.String> getContent()
Description copied from interface:TableDataGets the content.- Specified by:
getContentin interfaceTableData- Returns:
- the content
-
setContent
public void setContent(java.util.List<java.lang.String> content)
Description copied from interface:TableDataSets the content.- Specified by:
setContentin interfaceTableData- Parameters:
content- the new content
-
-