Class/Object

scalafx.scene.control.TableView

TableViewSelectionModel

Related Docs: object TableViewSelectionModel | package TableView

Permalink

abstract class TableViewSelectionModel[S] extends TableSelectionModel[S] with SFXDelegate[javafx.scene.control.TableView.TableViewSelectionModel[S]]

Wraps a JavaFX TableViewSelectionModel.

Source
TableView.scala
Linear Supertypes
TableSelectionModel[S], MultipleSelectionModel[S], SelectionModel[S], SFXDelegate[javafx.scene.control.TableView.TableViewSelectionModel[S]], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TableViewSelectionModel
  2. TableSelectionModel
  3. MultipleSelectionModel
  4. SelectionModel
  5. SFXDelegate
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TableViewSelectionModel(delegate: javafx.scene.control.TableView.TableViewSelectionModel[S])

    Permalink

    Creates a new ScalaFX TableViewSelectionModel from its JavaFX counterpart.

    Creates a new ScalaFX TableViewSelectionModel from its JavaFX counterpart.

    delegate

    JavaFX TableViewSelectionModel to be wrapped.

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 cellSelectionEnabled: BooleanProperty

    Permalink

    A boolean property used to represent whether the TableView is in row or cell selection modes.

    A boolean property used to represent whether the TableView is in row or cell selection modes.

    Definition Classes
    TableSelectionModel
  6. def cellSelectionEnabled_=(v: Boolean): Unit

    Permalink
    Definition Classes
    TableSelectionModel
  7. def clearAndSelect(row: Int, column: TableColumn[S, _]): Unit

    Permalink

    Clears all selection, and then selects the cell at the given row/column intersection.

  8. def clearAndSelect(row: Int, column: TableColumnBase[S, _]): Unit

    Permalink

    Clears all selection, and then selects the cell at the given row/column intersection.

    Clears all selection, and then selects the cell at the given row/column intersection.

    Definition Classes
    TableSelectionModel
  9. def clearAndSelect(index: 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.

    Definition Classes
    SelectionModel
  10. def clearSelection(row: Int, column: TableColumn[S, _]): Unit

    Permalink

    Removes selection from the specified row/column position (in view indexes).

  11. def clearSelection(row: Int, column: TableColumnBase[S, _]): Unit

    Permalink

    Removes selection from the specified row/column position (in view indexes).

    Removes selection from the specified row/column position (in view indexes).

    Definition Classes
    TableSelectionModel
  12. 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.

    Definition Classes
    SelectionModel
  13. def clearSelection(): Unit

    Permalink

    Clears the selection model of all selected indices.

    Clears the selection model of all selected indices.

    Definition Classes
    SelectionModel
  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. val delegate: javafx.scene.control.TableView.TableViewSelectionModel[S]

    Permalink

    JavaFX TableViewSelectionModel to be wrapped.

    JavaFX TableViewSelectionModel to be wrapped.

    Definition Classes
    TableViewSelectionModelTableSelectionModelMultipleSelectionModelSelectionModelSFXDelegate
  16. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. 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
  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def focusedIndex: Int

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

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

    Permalink

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  22. 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.

    Definition Classes
    SelectionModel
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. def isSelected(row: Int, column: TableColumn[S, _]): Boolean

    Permalink

    Selects the cell at the given row/column intersection.

  25. def isSelected(row: Int, column: TableColumnBase[S, _]): Boolean

    Permalink

    Convenience function which tests whether the given row and column index is currently selected in this TableView instance.

    Convenience function which tests whether the given row and column index is currently selected in this TableView instance.

    Definition Classes
    TableSelectionModel
  26. 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.

    Definition Classes
    SelectionModel
  27. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  30. def select(row: Int, column: TableColumn[S, _]): Unit

    Permalink

    Selects the cell at the given row/column intersection.

  31. def select(row: Int, column: TableColumnBase[S, _]): Unit

    Permalink

    Selects the cell at the given row/column intersection.

    Selects the cell at the given row/column intersection.

    Definition Classes
    TableSelectionModel
  32. def select(obj: 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.

    Definition Classes
    SelectionModel
  33. def select(index: 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.

    Definition Classes
    SelectionModel
  34. def selectAboveCell(): Unit

    Permalink

    Selects the cell directly above the currently selected cell.

    Selects the cell directly above the currently selected cell.

    Definition Classes
    TableSelectionModel
  35. def selectAll(): Unit

    Permalink

    Convenience method to select all available indices.

    Convenience method to select all available indices.

    Definition Classes
    MultipleSelectionModel
  36. def selectBelowCell(): Unit

    Permalink

    Selects the cell directly below the currently selected cell.

    Selects the cell directly below the currently selected cell.

    Definition Classes
    TableSelectionModel
  37. 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.

    Definition Classes
    SelectionModel
  38. def selectIndices(index: Int, indices: 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.

    Definition Classes
    MultipleSelectionModel
  39. 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.

    Definition Classes
    SelectionModel
  40. def selectLeftCell(): Unit

    Permalink

    Selects the cell to the left of the currently selected cell.

    Selects the cell to the left of the currently selected cell.

    Definition Classes
    TableSelectionModel
  41. 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.

    Definition Classes
    SelectionModel
  42. 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.

    Definition Classes
    SelectionModel
  43. def selectRange(minRow: Int, minColumn: TableColumnBase[S, _], maxRow: Int, maxColumn: TableColumnBase[S, _]): Unit

    Permalink

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

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

    Definition Classes
    TableSelectionModel
  44. def selectRange(start: Int, end: Int): Unit

    Permalink

    Selects all indices from the given start index to the item before the given end index.

    Selects all indices from the given start index to the item before the given end index. This means that the selection is inclusive of the start index, and exclusive of the end index. This method will work regardless of whether start < end or start > end: the only constant is that the index before the given end index will become the selected index.

    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.

    start

    The first index to select - this index will be selected.

    end

    The last index of the selection - this index will not be selected.

    Definition Classes
    MultipleSelectionModel
  45. def selectRightCell(): Unit

    Permalink

    Selects the cell to the right of the currently selected cell.

    Selects the cell to the right of the currently selected cell.

    Definition Classes
    TableSelectionModel
  46. def selectedCells: ObservableBuffer[TablePosition[_, _]]

    Permalink

    A read-only ObservableList representing the currently selected cells in this TableView.

  47. def selectedIndex: ReadOnlyIntegerProperty

    Permalink

    Refers to the selected index property, which is used to indicate the currently selected index value in the selection model.

    Refers to the selected index property, which is used to indicate the currently selected index value in the selection model.

    Definition Classes
    SelectionModel
  48. 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.

    Definition Classes
    MultipleSelectionModel
  49. def selectedItem: ReadOnlyObjectProperty[S]

    Permalink

    Refers to the selected item property, which is used to indicate the currently selected item in the selection model.

    Refers to the selected item property, which is used to indicate the currently selected item in the selection model.

    Definition Classes
    SelectionModel
  50. def selectedItems: ObservableBuffer[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.

    Definition Classes
    MultipleSelectionModel
  51. def selectionMode: ObjectProperty[javafx.scene.control.SelectionMode]

    Permalink

    Specifies the selection mode to use in this selection model.

    Specifies the selection mode to use in this selection model. The selection mode specifies how many items in the underlying data model can be selected at any one time.

    By default, the selection mode is SelectionMode.SINGLE.

    Definition Classes
    MultipleSelectionModel
  52. def selectionMode_=(v: SelectionMode): Unit

    Permalink
    Definition Classes
    MultipleSelectionModel
  53. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  54. def tableView: TableView[S]

    Permalink

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

  55. def toString(): String

    Permalink

    returns

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

    Definition Classes
    SFXDelegate → AnyRef → Any
  56. final def wait(): Unit

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

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

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

Inherited from TableSelectionModel[S]

Inherited from MultipleSelectionModel[S]

Inherited from SelectionModel[S]

Inherited from SFXDelegate[javafx.scene.control.TableView.TableViewSelectionModel[S]]

Inherited from AnyRef

Inherited from Any

Ungrouped