Interface Table
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
TableImpl
public interface Table extends java.io.SerializableThe Interface Table.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetId()Gets the id.java.lang.StringgetStyle()Gets the style.TableBodygetTbody()TableBodyGets the tbody.java.lang.StringgetTitle()Gets the title.voidsetId(int id)Sets the id.voidsetStyle(java.lang.String style)Sets the style.voidsetTbody(TableBody tbody)TableBodySets the tbody.voidsetTitle(java.lang.String title)Sets the title.
-
-
-
Method Detail
-
getId
int getId()
Gets the id.- Returns:
- the id
-
setId
void setId(int id)
Sets the id.- Parameters:
id- the new id
-
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
-
-