Interface Trees.FinalBuilder<T,R>

All Known Implementing Classes:
Trees.Builder
Enclosing class:
Trees

public static interface Trees.FinalBuilder<T,R>
  • Method Summary

    Modifier and Type
    Method
    Description
    Set up the ability to select tree elements using a check box In the list of columns, a column with a check box will be added to the first place
    This is the finalization method.
    Set up dynamic update of child elements.When enabled, child elements are calculated during each expansion of the parent element.
    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 tree
    Set the synchronous data update property in the tree
  • Method Details

    • create

      R create()
      This is the finalization method. Call this method to create the tree type of your choice
    • checkbox

      Trees.FinalBuilder<T,R> checkbox()
      Set up the ability to select tree elements using a check box In the list of columns, a column with a check box will be added to the first place
      Returns:
      builder object
    • greedyChildrenCalculation

      Trees.FinalBuilder<T,R> greedyChildrenCalculation()
      Set up dynamic update of child elements.When enabled, child elements are calculated during each expansion of the parent element. If disabled, then the calculation of child elements occurs during the tree update.
      Returns:
      builder object
    • syncUpdate

      Trees.FinalBuilder<T,R> syncUpdate()
      Set the synchronous data update property in the tree
      Returns:
      builder object
    • rowHeader

      Trees.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

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