Module org.controlsfx.controls
Package impl.org.controlsfx.spreadsheet
Class SelectedCellsMapTemp<T extends TablePositionBase>
- java.lang.Object
-
- impl.org.controlsfx.spreadsheet.SelectedCellsMapTemp<T>
-
- Type Parameters:
T-
public class SelectedCellsMapTemp<T extends TablePositionBase> extends Object
This class is copied from com.sun.javafx.scene.control.SelectedCellsMap temporary in 8u20 to resolve https://javafx-jira.kenai.com/browse/RT-38306 Will be removed in 8u40
-
-
Constructor Summary
Constructors Constructor Description SelectedCellsMapTemp(ListChangeListener<T> listener)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(T tp)voidaddAll(Collection<T> cells)voidclear()Tget(int i)ObservableList<T>getSelectedCells()intindexOf(T tp)booleanisEmpty()booleanisSelected(int row, int columnIndex)voidremove(T tp)voidsetAll(Collection<T> cells)intsize()
-
-
-
Constructor Detail
-
SelectedCellsMapTemp
public SelectedCellsMapTemp(ListChangeListener<T> listener)
-
-
Method Detail
-
size
public int size()
-
get
public T get(int i)
-
add
public void add(T tp)
-
addAll
public void addAll(Collection<T> cells)
-
setAll
public void setAll(Collection<T> cells)
-
remove
public void remove(T tp)
-
clear
public void clear()
-
isSelected
public boolean isSelected(int row, int columnIndex)
-
indexOf
public int indexOf(T tp)
-
isEmpty
public boolean isEmpty()
-
getSelectedCells
public ObservableList<T> getSelectedCells()
-
-