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 void
add(T tp)
void
addAll(Collection<T> cells)
void
clear()
T
get(int i)
ObservableList<T>
getSelectedCells()
int
indexOf(T tp)
boolean
isEmpty()
boolean
isSelected(int row, int columnIndex)
void
remove(T tp)
void
setAll(Collection<T> cells)
int
size()
-
-
-
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()
-
-