Interface IRowBuilderAdaptor
-
public interface IRowBuilderAdaptorBuilder of a row of a simple table.- See Also:
ISimpleTableModelBuilderAdaptor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetCell(java.lang.String headerTitle, double value)Sets the value of the column specified by the header title to the specified double value.voidsetCell(java.lang.String headerTitle, long value)Sets the value of the column specified by the header title to the specified long value.voidsetCell(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.voidsetCell(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.voidsetCell(java.lang.String headerTitle, java.lang.String value)Sets the value of the column specified by the header title to the specified string.voidsetCell(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.
-
-