Interface IRowBuilderAdaptor
-
public interface IRowBuilderAdaptor
Builder of a row of a simple table.- See Also:
ISimpleTableModelBuilderAdaptor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setCell(java.lang.String headerTitle, double value)
Sets the value of the column specified by the header title to the specified double value.void
setCell(java.lang.String headerTitle, long value)
Sets the value of the column specified by the header title to the specified long value.void
setCell(java.lang.String headerTitle, IEntityLinkElement value)
Sets the value of the column specified by the header title to the specified entity link rendered using identifier.void
setCell(java.lang.String headerTitle, IEntityLinkElement value, java.lang.String linkText)
Sets the value of the column specified by the header title to the specified entity link rendered using given text.void
setCell(java.lang.String headerTitle, java.lang.String value)
Sets the value of the column specified by the header title to the specified string.void
setCell(java.lang.String headerTitle, java.util.Date value)
Sets the value of the column specified by the header title to the specified date.
-
-
-
Method Detail
-
setCell
void setCell(java.lang.String headerTitle, java.lang.String value)
Sets the value of the column specified by the header title to the specified string.
-
setCell
void setCell(java.lang.String headerTitle, long value)
Sets the value of the column specified by the header title to the specified long value.
-
setCell
void setCell(java.lang.String headerTitle, double value)
Sets the value of the column specified by the header title to the specified double value.
-
setCell
void setCell(java.lang.String headerTitle, java.util.Date value)
Sets the value of the column specified by the header title to the specified date.
-
setCell
void setCell(java.lang.String headerTitle, IEntityLinkElement value)
Sets the value of the column specified by the header title to the specified entity link rendered using identifier.
-
setCell
void setCell(java.lang.String headerTitle, IEntityLinkElement value, java.lang.String linkText)
Sets the value of the column specified by the header title to the specified entity link rendered using given text.
-
-