scalafx.scene.control.TableView

TableViewSelectionModel

Related Docs: object TableViewSelectionModel | package TableView

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

Wraps http://docs.oracle.com/javafx/2/api/javafx/scene/control/TableView.TableViewSelectionModel.html.

Source
TableView.scala
Linear Supertypes
MultipleSelectionModel[S], SelectionModel[S], SFXDelegate[javafx.scene.control.TableView.TableViewSelectionModel[S]], AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TableViewSelectionModel
  2. MultipleSelectionModel
  3. SelectionModel
  4. SFXDelegate
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

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

Value Members

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

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

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

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

    Definition Classes
    Any
  5. def cellSelectionEnabled: BooleanProperty

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

  6. def cellSelectionEnabled_=(v: Boolean): Unit

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

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

  8. def clearAndSelect(index: Int): Unit

    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
  9. def clearSelection(row: Int, column: TableColumn[S, _]): Unit

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

  10. def clearSelection(index: Int): Unit

    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
  11. def clearSelection(): Unit

    Clears the selection model of all selected indices.

    Clears the selection model of all selected indices.

    Definition Classes
    SelectionModel
  12. def clone(): AnyRef

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

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    TableViewSelectionModelMultipleSelectionModelSelectionModelSFXDelegate
  14. final def eq(arg0: AnyRef): Boolean

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

    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
  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

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

    returns

    The delegate hashcode

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

    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
  20. final def isInstanceOf[T0]: Boolean

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

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

  22. def isSelected(index: Int): Boolean

    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
  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

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

    Selects the cell at the given row/column intersection.

  27. def select(obj: S): Unit

    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
  28. def select(index: Int): Unit

    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
  29. def selectAboveCell(): Unit

    Selects the cell directly above the currently selected cell.

  30. def selectAll(): Unit

    Convenience method to select all available indices.

    Convenience method to select all available indices.

    Definition Classes
    MultipleSelectionModel
  31. def selectBelowCell(): Unit

    Selects the cell directly below the currently selected cell.

  32. def selectFirst(): Unit

    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
  33. def selectIndices(index: Int, indices: Int*): Unit

    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
  34. def selectLast(): Unit

    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
  35. def selectLeftCell(): Unit

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

  36. def selectNext(): Unit

    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
  37. def selectPrevious(): Unit

    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
  38. def selectRange(start: Int, end: Int): Unit

    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
  39. def selectRightCell(): Unit

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

  40. def selectedCells: ObservableBuffer[TablePosition[_, _]]

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

  41. def selectedIndex: ReadOnlyIntegerProperty

    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
  42. def selectedIndices: ObservableList[Integer]

    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
  43. def selectedItem: ReadOnlyObjectProperty[S]

    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
  44. def selectedItems: ObservableList[S]

    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
  45. def selectionMode: ObjectProperty[javafx.scene.control.SelectionMode]

    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
  46. def selectionMode_=(v: SelectionMode): Unit

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

    Definition Classes
    AnyRef
  48. def tableView: TableView[S]

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

  49. def toString(): String

    returns

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

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from MultipleSelectionModel[S]

Inherited from SelectionModel[S]

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

Inherited from AnyRef

Inherited from Any

Ungrouped