Spec-Zone .ru
спецификации, руководства, описания, API
|
static class TableView.TableViewArrayListSelectionModel<S> extends TableView.TableViewSelectionModel<S>
cellSelectionEnabled
selectionMode
selectedIndex, selectedItem
Constructor and Description |
---|
TableView.TableViewArrayListSelectionModel(TableView<S> tableView)
*
Constructors *
*
|
Modifier and Type | Method and Description |
---|---|
void |
clearAndSelect(int row)
*
Public selection API *
*
|
void |
clearAndSelect(int row,
TableColumn<S,?> column)
Clears all selection, and then selects the cell at the given row/column
intersection.
|
void |
clearSelection()
Clears the selection model of all selected indices.
|
void |
clearSelection(int index)
This method will clear the selection of the item in the given index.
|
void |
clearSelection(int row,
TableColumn<S,?> column)
Removes selection from the specified row/column position (in view indexes).
|
ObservableList<TablePosition> |
getSelectedCells()
A read-only ObservableList representing the currently selected cells
in this TableView.
|
ObservableList<java.lang.Integer> |
getSelectedIndices()
Returns a read-only ObservableList of all selected indices.
|
ObservableList<S> |
getSelectedItems()
Returns a read-only ObservableList of all selected items.
|
boolean |
isEmpty()
This method is available to test whether there are any selected
indices/items.
|
boolean |
isSelected(int index)
Convenience method to inform if the given index is currently selected
in this SelectionModel.
|
boolean |
isSelected(int row,
TableColumn<S,?> column)
Convenience function which tests whether the given row and column index
is currently selected in this TableView instance.
|
void |
select(int row)
This will select the given index in the selection model, assuming the
index is within the valid range (i.e.
|
void |
select(int row,
TableColumn<S,?> column)
Selects the cell at the given row/column intersection.
|
void |
select(S obj)
This method will attempt to select the index that contains the given
object.
|
void |
selectAboveCell()
Selects the cell directly above the currently selected cell.
|
void |
selectAll()
Convenience method to select all available indices.
|
void |
selectBelowCell()
Selects the cell directly below the currently selected cell.
|
void |
selectFirst()
This method will attempt to select the first index in the control.
|
void |
selectIndices(int row,
int... rows)
This method allows for one or more selections to be set at the same time.
|
void |
selectLast()
This method will attempt to select the last index in the control.
|
void |
selectLeftCell()
Selects the cell to the left of the currently selected cell.
|
void |
selectNext()
This method will attempt to select the index directly after the current
focused index.
|
void |
selectPrevious()
This method will attempt to select the index directly before the current
focused index.
|
void |
selectRightCell()
Selects the cell to the right of the currently selected cell.
|
cellSelectionEnabledProperty, getTableModel, getTableView, isCellSelectionEnabled, setCellSelectionEnabled
getSelectionMode, selectionModeProperty, selectRange, setSelectionMode
getSelectedIndex, getSelectedItem, selectedIndexProperty, selectedItemProperty, setSelectedIndex, setSelectedItem
public ObservableList<java.lang.Integer> getSelectedIndices()
MultipleSelectionModel
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.
getSelectedIndices
in class MultipleSelectionModel<S>
public ObservableList<S> getSelectedItems()
MultipleSelectionModel
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.
getSelectedItems
in class MultipleSelectionModel<S>
public ObservableList<TablePosition> getSelectedCells()
TableView.TableViewSelectionModel
getSelectedCells
in class TableView.TableViewSelectionModel<S>
public void clearAndSelect(int row)
clearAndSelect
in class SelectionModel<S>
row
- The index that should be the only selected index in this
selection model.public void clearAndSelect(int row, TableColumn<S,?> column)
TableView.TableViewSelectionModel
clearAndSelect
in class TableView.TableViewSelectionModel<S>
public void select(int row)
SelectionModel
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()
.
select
in class SelectionModel<S>
row
- The position of the item to select in the selection model.public void select(int row, TableColumn<S,?> column)
TableView.TableViewSelectionModel
select
in class TableView.TableViewSelectionModel<S>
public void select(S obj)
SelectionModel
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.
select
in class SelectionModel<S>
obj
- The object to attempt to select in the underlying data model.public void selectIndices(int row, int... rows)
MultipleSelectionModel
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.
selectIndices
in class MultipleSelectionModel<S>
public void selectAll()
MultipleSelectionModel
Convenience method to select all available indices.
selectAll
in class MultipleSelectionModel<S>
public void clearSelection(int index)
SelectionModel
This method will clear the selection of the item in the given index. If the given index is not selected, nothing will happen.
clearSelection
in class SelectionModel<S>
index
- The selected item to deselect.public void clearSelection(int row, TableColumn<S,?> column)
TableView.TableViewSelectionModel
clearSelection
in class TableView.TableViewSelectionModel<S>
public void clearSelection()
SelectionModel
Clears the selection model of all selected indices.
clearSelection
in class SelectionModel<S>
public boolean isSelected(int index)
SelectionModel
Convenience method to inform if the given index is currently selected
in this SelectionModel. Is functionally equivalent to calling
getSelectedIndices().contains(index)
.
isSelected
in class SelectionModel<S>
index
- The index to check as to whether it is currently selected
or not.public boolean isSelected(int row, TableColumn<S,?> column)
TableView.TableViewSelectionModel
isSelected
in class TableView.TableViewSelectionModel<S>
public boolean isEmpty()
SelectionModel
isEmpty
in class SelectionModel<S>
public void selectPrevious()
SelectionModel
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:
If any of these conditions is false, no selection event will take place.
selectPrevious
in class SelectionModel<S>
public void selectNext()
SelectionModel
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:
If any of these conditions is false, no selection event will take place.
selectNext
in class SelectionModel<S>
public void selectAboveCell()
TableView.TableViewSelectionModel
selectAboveCell
in class TableView.TableViewSelectionModel<S>
public void selectBelowCell()
TableView.TableViewSelectionModel
selectBelowCell
in class TableView.TableViewSelectionModel<S>
public void selectFirst()
MultipleSelectionModel
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.
selectFirst
in class MultipleSelectionModel<S>
public void selectLast()
MultipleSelectionModel
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.
selectLast
in class MultipleSelectionModel<S>
public void selectLeftCell()
TableView.TableViewSelectionModel
selectLeftCell
in class TableView.TableViewSelectionModel<S>
public void selectRightCell()
TableView.TableViewSelectionModel
selectRightCell
in class TableView.TableViewSelectionModel<S>
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to