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 Type
    Method
    Description
    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
    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 place
    style(int style)
    Set additional SWT properties in the table
    Set the synchronous data update property in the table
    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

      Tables.FinalBuilder<T,R> style(int style)
      Set additional SWT properties in the table
      Parameters:
      style -
      Returns:
      builder object