Package com.biglybt.ui.common.table
Class TableSelectionAdapter
- java.lang.Object
-
- com.biglybt.ui.common.table.TableSelectionAdapter
-
- All Implemented Interfaces:
TableSelectionListener
public abstract class TableSelectionAdapter extends java.lang.Object implements TableSelectionListener
-
-
Constructor Summary
Constructors Constructor Description TableSelectionAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
defaultSelected(TableRowCore[] rows, int stateMask)
void
deselected(TableRowCore[] rows)
void
focusChanged(TableRowCore focus)
void
mouseEnter(TableRowCore row)
void
mouseExit(TableRowCore row)
void
selected(TableRowCore[] rows)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.biglybt.ui.common.table.TableSelectionListener
defaultSelected, selectionChanged
-
-
-
-
Method Detail
-
defaultSelected
public void defaultSelected(TableRowCore[] rows, int stateMask)
- Specified by:
defaultSelected
in interfaceTableSelectionListener
-
deselected
public void deselected(TableRowCore[] rows)
- Specified by:
deselected
in interfaceTableSelectionListener
-
focusChanged
public void focusChanged(TableRowCore focus)
- Specified by:
focusChanged
in interfaceTableSelectionListener
-
selected
public void selected(TableRowCore[] rows)
- Specified by:
selected
in interfaceTableSelectionListener
-
mouseEnter
public void mouseEnter(TableRowCore row)
- Specified by:
mouseEnter
in interfaceTableSelectionListener
-
mouseExit
public void mouseExit(TableRowCore row)
- Specified by:
mouseExit
in interfaceTableSelectionListener
-
-