Class PageInfo.TableInfo.ColumnInfo
- Enclosing class:
- PageInfo.TableInfo
@WizSerializable public static class PageInfo.TableInfo.ColumnInfo extends Object
-
Constructor Summary
Constructors Constructor Description ColumnInfo()
-
Method Summary
Modifier and Type Method Description String
getStyle()
Gets the value of the style property.String
getSubTitle()
Gets the value of the subTitle property.int
getSummary()
Gets the value of the summary property.String
getTitle()
Gets the value of the title property.void
setStyle(String value)
Sets the value of the style property.void
setSubTitle(String value)
Sets the value of the subTitle property.void
setSummary(int value)
Sets the value of the summary property.Thesummary
property determines the value displayed in the table summary line for the referenced column.void
setTitle(String value)
Sets the value of the title property.
-
Constructor Details
-
ColumnInfo
public ColumnInfo()
-
-
Method Details
-
getTitle
Gets the value of the title property.The
title
property specifies the column title that is displayed in the table header for the referenced column. This value also identifies the column whenTableData.addRow()
is used to populate the table.- Returns:
- the value of the title property.
-
setTitle
Sets the value of the title property.The
title
property specifies the column title that is displayed in the table header for the referenced column. This value also identifies the column whenTableData.addRow()
is used to populate the table.You should not set the property directly but rather specify a title when calling
addColumn()
.- Parameters:
value
-
-
getSubTitle
Gets the value of the subTitle property.The
subTitle
property specifies the column sub-title that is displayed in the table sub-header for the referenced column. If the property value is null nothing is displayed in the table sub-header for this column.- Returns:
- the value of the subTitle property.
-
setSubTitle
Sets the value of the subTitle property.The
subTitle
property specifies the column sub-title that is displayed in the table sub-header for the referenced column. If the property value is null nothing is displayed in the table sub-header for this column.You should not set the property directly but rather specify a sub-title when calling
addColumn()
.- Parameters:
value
-
-
getStyle
Gets the value of the style property.The
style
property specifies the default HTML styles used for displaying the cells in the referenced column. The property can be overridden for specific cells whenTableData.addRow()
is used.- Returns:
- the value of the style property.
-
setStyle
Sets the value of the style property.The
style
property specifies the default HTML styles used for displaying the cells in the referenced column. The property can be overridden for specific cells whenTableData.addRow()
is used.You should not set the property directly but rather specify a style bit mask when calling
addColumn()
.- Parameters:
value
-
-
getSummary
public int getSummary()Gets the value of the summary property. Thesummary
property determines the value displayed in the table summary line for the referenced column. The possible values are defined inPageInfo.TableInfo.Summary
.- Returns:
- the value of the summary property.
-
setSummary
public void setSummary(int value)Sets the value of the summary property.Thesummary
property determines the value displayed in the table summary line for the referenced column. The possible values are defined inPageInfo.TableInfo.Summary
.You should not set the property directly but rather specify the summary code when calling
addColumn()
.- Parameters:
value
-
-