Class/Object

scalafx.scene.control.TreeTableView

TreeTableViewSelectionModel

Related Docs: object TreeTableViewSelectionModel | package TreeTableView

Permalink

abstract class TreeTableViewSelectionModel[S] extends SFXDelegate[javafx.scene.control.TreeTableView.TreeTableViewSelectionModel[S]]

A simple extension of the SelectionModel abstract class to allow for special support for TreeTableView controls.

Wraps a JavaFX http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.TreeTableViewSelectionModel.html

Source
TreeTableView.scala
Since

8.0

Linear Supertypes
SFXDelegate[javafx.scene.control.TreeTableView.TreeTableViewSelectionModel[S]], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TreeTableViewSelectionModel
  2. SFXDelegate
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TreeTableViewSelectionModel(delegate: javafx.scene.control.TreeTableView.TreeTableViewSelectionModel[S])

    Permalink

    Creates a new TreeTableViewSelectionModel from a JavaFX one.

    Creates a new TreeTableViewSelectionModel from a JavaFX one.

    delegate

    A JavaFX TreeTableViewSelectionModel to be wrapped. Its default value is a new JavaFX TreeTableViewSelectionModel.

Type Members

  1. type Delegate = javafx.scene.control.TreeTableView.TreeTableViewSelectionModel[S]

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clearAndSelect(row: Int): Unit

    Permalink

    A method that clears any selection prior to setting the selection to the given index.

    A method that clears any selection prior to setting the selection to the given index. The purpose of this method is to avoid having to call SelectionModel.clearSelection() first, meaning that observers that are listening to the selected index property will not see the selected index being temporarily set to -1.

    row

    The index that should be the only selected index in this selection model.

  6. def clearSelection(index: Int): Unit

    Permalink

    This method will clear the selection of the item in the given index.

    This method will clear the selection of the item in the given index. If the given index is not selected, nothing will happen.

    index

    The selected item to deselect.

  7. def clearSelection(): Unit

    Permalink

    Clears the selection model of all selected indices.

  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. val delegate: javafx.scene.control.TreeTableView.TreeTableViewSelectionModel[S]

    Permalink

    A JavaFX TreeTableViewSelectionModel to be wrapped.

    A JavaFX TreeTableViewSelectionModel to be wrapped. Its default value is a new JavaFX TreeTableViewSelectionModel.

    Definition Classes
    TreeTableViewSelectionModelSFXDelegate
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(ref: Any): Boolean

    Permalink

    Verifies if a object is equals to this delegate.

    Verifies if a object is equals to this delegate.

    ref

    Object to be compared.

    returns

    if the other object is equals to this delegate or not.

    Definition Classes
    SFXDelegate → AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def focus(row: Int): Unit

    Permalink
  14. def focusedIndex: Int

    Permalink
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  17. def isEmpty: Boolean

    Permalink

    This method is available to test whether there are any selected indices/items.

    This method is available to test whether there are any selected indices/items. It will return true if there are no selected items, and false if there are.

    returns

    Will return true if there are no selected items, and false if there are.

  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. def isSelected(index: Int): Boolean

    Permalink

    Convenience method to inform if the given index is currently selected in this SelectionModel.

    Convenience method to inform if the given index is currently selected in this SelectionModel. Is functionally equivalent to calling getSelectedIndices().contains(index).

    index

    The index to check as to whether it is currently selected or not.

    returns

    True if the given index is selected, false otherwise.

  20. def modelItem(index: Int): TreeItem[S]

    Permalink

    Returns the item at the given index.

    Returns the item at the given index. An example using ListView would be listView.getItems().get(index).

    index

    The index of the item that is requested from the underlying data model.

    returns

    Returns null if the index is out of bounds, or an element of type TreeItem[S] that is related to the given index.

  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. def select(obj: TreeItem[S]): Unit

    Permalink

    This method will attempt to select the index that contains the given object.

    This method will attempt to select the index that contains the given object. It will iterate through the underlying data model until it finds an item whose value is equal to the given object. At this point it will stop iterating - this means that this method will not select multiple indices.

    obj

    The object to attempt to select in the underlying data model.

  25. def select(row: Int): Unit

    Permalink

    This will select the given index in the selection model, assuming the index is within the valid range (i.e.

    This will select the given index in the selection model, assuming the index is within the valid range (i.e. greater than or equal to zero, and less than the total number of items in the underlying data model).

    If there is already one or more indices selected in this model, calling this method will not clear these selections - to do so it is necessary to first call SelectionModel.clearSelection().

    If the index is already selected, it will not be selected again, or unselected. However, if multiple selection is implemented, then calling select on an already selected index will have the effect of making the index the new selected index (as returned by SelectionModel.getSelectedIndex().

    row

    The position of the item to select in the selection model.

  26. def selectAll(): Unit

    Permalink

    Convenience method to select all available indices.

  27. def selectFirst(): Unit

    Permalink

    This method will attempt to select the first index in the control.

    This method will attempt to select the first index in the control. If clearSelection is not called first, this method will have the result of selecting the first index, whilst retaining the selection of any other currently selected indices.

    If the first index is already selected, calling this method will have no result, and no selection event will take place.

  28. def selectIndices(row: Int, rows: Int*): Unit

    Permalink

    This method allows for one or more selections to be set at the same time.

    This method allows for one or more selections to be set at the same time. It will ignore any value that is not within the valid range (i.e. greater than or equal to zero, and less than the total number of items in the underlying data model). Any duplication of indices will be ignored.

    If there is already one or more indices selected in this model, calling this method will not clear these selections - to do so it is necessary to first call clearSelection.

    The last valid value given will become the selected index / selected item.

  29. def selectLast(): Unit

    Permalink

    This method will attempt to select the last index in the control.

    This method will attempt to select the last index in the control. If clearSelection is not called first, this method will have the result of selecting the last index, whilst retaining the selection of any other currently selected indices.

    If the last index is already selected, calling this method will have no result, and no selection event will take place.

  30. def selectNext(): Unit

    Permalink

    This method will attempt to select the index directly after the current focused index.

    This method will attempt to select the index directly after the current focused index. If clearSelection is not called first, this method will have the result of selecting the next index, whilst retaining the selection of any other currently selected indices.

    Calling this method will only succeed if: - There is currently a lead/focused index. - The lead/focus index is not the last index in the control. - The next index is not already selected.

    If any of these conditions is false, no selection event will take place.

  31. def selectPrevious(): Unit

    Permalink

    This method will attempt to select the index directly before the current focused index.

    This method will attempt to select the index directly before the current focused index. If clearSelection is not called first, this method will have the result of selecting the previous index, whilst retaining the selection of any other currently selected indices.

    Calling this method will only succeed if: - There is currently a lead/focused index. - The lead/focus index is not the first index in the control. - The previous index is not already selected.

    If any of these conditions is false, no selection event will take place.

  32. def selectRange(minRow: Int, minColumn: TableColumnBase[javafx.scene.control.TreeItem[S], _], maxRow: Int, maxColumn: TableColumnBase[javafx.scene.control.TreeItem[S], _]): Unit

    Permalink

    Selects the cells in the range (minRow, minColumn) to (maxRow, maxColumn), inclusive.

  33. def selectedCells: ObservableBuffer[TreeTablePosition[S, _]]

    Permalink

    A read-only ObservableBuffer representing the currently selected cells in this TreeTableView.

    A read-only ObservableBuffer representing the currently selected cells in this TreeTableView. Rather than directly modify this list, please use the other methods provided in the TreeTableViewSelectionModel.

  34. def selectedIndices: ObservableBuffer[Integer]

    Permalink

    Returns a read-only ObservableList of all selected indices.

    Returns a read-only ObservableList of all selected indices. The ObservableList will be updated by the selection model to always reflect changes in selection. This can be observed by adding a ListChangeListener to the returned ObservableList.

  35. def selectedItems: ObservableBuffer[javafx.scene.control.TreeItem[S]]

    Permalink

    Returns a read-only ObservableList of all selected items.

    Returns a read-only ObservableList of all selected items. The ObservableList will be updated further by the selection model to always reflect changes in selection. This can be observed by adding a ListChangeListener to the returned ObservableList.

  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  37. def toString(): String

    Permalink

    returns

    Returns the original delegate's toString() adding a [SFX] prefix.

    Definition Classes
    SFXDelegate → AnyRef → Any
  38. def treeTableView: TreeTableView[S]

    Permalink

    Returns the TreeTableView instance that this selection model is installed in.

  39. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from SFXDelegate[javafx.scene.control.TreeTableView.TreeTableViewSelectionModel[S]]

Inherited from AnyRef

Inherited from Any

Ungrouped