Interface ITableInstance
-
- All Superinterfaces:
IReportElementInstance
,IReportItemInstance
public interface ITableInstance extends IReportItemInstance
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getCaption()
Get the caption.java.lang.String
getCaptionKey()
Get the caption keyIColumnInstance
getColumn(int index)
Get column according to the index.int
getColumnCount()
Get column's count on the table.boolean
getRepeatHeader()
Get repeat headerjava.lang.String
getSummary()
Get the summary.void
setCaption(java.lang.String caption)
Set the captionvoid
setCaptionKey(java.lang.String captionKey)
Set the caption keyvoid
setRepeatHeader(boolean repeat)
Set repeat headervoid
setSummary(java.lang.String summary)
Set the summary-
Methods inherited from interface org.eclipse.birt.report.engine.api.script.instance.IReportElementInstance
getHeight, getHorizontalPosition, getNamedExpressionValue, getParent, getRowData, getStyle, getUserPropertyValue, getVerticalPosition, getWidth, setHeight, setHorizontalPosition, setUserPropertyValue, setVerticalPosition, setWidth
-
Methods inherited from interface org.eclipse.birt.report.engine.api.script.instance.IReportItemInstance
getHelpText, getHyperlink, getName, setHelpText, setName
-
-
-
-
Method Detail
-
getCaption
java.lang.String getCaption()
Get the caption.
-
setCaption
void setCaption(java.lang.String caption)
Set the caption
-
getCaptionKey
java.lang.String getCaptionKey()
Get the caption key
-
setCaptionKey
void setCaptionKey(java.lang.String captionKey)
Set the caption key
-
getRepeatHeader
boolean getRepeatHeader()
Get repeat header
-
setRepeatHeader
void setRepeatHeader(boolean repeat)
Set repeat header- Parameters:
repeat
-
-
getSummary
java.lang.String getSummary()
Get the summary.
-
setSummary
void setSummary(java.lang.String summary)
Set the summary
-
getColumnCount
int getColumnCount()
Get column's count on the table.
-
getColumn
IColumnInstance getColumn(int index)
Get column according to the index.
-
-