Interface Tables.FinalBuilder<T,R>
- All Known Implementing Classes:
Tables.Builder
- Enclosing class:
Tables
public static interface Tables.FinalBuilder<T,R>
-
Method Summary
Modifier and TypeMethodDescriptioncheckbox()Set up the ability to select table elements using a check box In the list of columns, a column with a check box will be added to the first place or second place if table have rowHeadercreate()This is the finalization method.Set up the ability to select table elements In the list of columns, a column with a rowHeader will be added to the first placestyle(int style) Set additional SWT properties in the tableSet the synchronous data update property in the tablevirtual()Set the ability to add virtual data
-
Method Details
-
create
R create()This is the finalization method. Call this method to create the table type of your choice -
checkbox
Tables.FinalBuilder<T,R> checkbox()Set up the ability to select table elements using a check box In the list of columns, a column with a check box will be added to the first place or second place if table have rowHeader- Returns:
- builder object
-
virtual
Tables.FinalBuilder<T,R> virtual()Set the ability to add virtual data- Returns:
- builder object
-
syncUpdate
Tables.FinalBuilder<T,R> syncUpdate()Set the synchronous data update property in the table- Returns:
- builder object
-
rowHeader
Tables.FinalBuilder<T,R> rowHeader()Set up the ability to select table elements In the list of columns, a column with a rowHeader will be added to the first place- Returns:
- builder object
-
style
Set additional SWT properties in the table- Parameters:
style-- Returns:
- builder object
-