Class TableColumnOTOF_Size
- java.lang.Object
-
- com.biglybt.ui.swt.shells.opentorrent.TableColumnOTOF_Size
-
- All Implemented Interfaces:
TableCellRefreshListener
,TableCellToolTipListener
,TableColumnExtraInfoListener
,TableCellSWTPaintListener
public class TableColumnOTOF_Size extends java.lang.Object implements TableCellRefreshListener, TableColumnExtraInfoListener, TableCellSWTPaintListener, TableCellToolTipListener
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
COLUMN_ID
-
Constructor Summary
Constructors Constructor Description TableColumnOTOF_Size(TableColumn column)
Default Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
cellHover(TableCell cell)
triggered when a cell's tooltip is about to be displayed.void
cellHoverComplete(TableCell cell)
triggered when a cell's tooltip is about to be removed.void
cellPaint(org.eclipse.swt.graphics.GC gc, TableCellSWT cell)
void
fillTableColumnInfo(TableColumnInfo info)
Provide the app with information about your Table Columnvoid
refresh(TableCell cell)
Triggered based on refresh interval specified inTableColumn.getRefreshInterval()
-
-
-
Field Detail
-
COLUMN_ID
public static final java.lang.String COLUMN_ID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TableColumnOTOF_Size
public TableColumnOTOF_Size(TableColumn column)
Default Constructor
-
-
Method Detail
-
fillTableColumnInfo
public void fillTableColumnInfo(TableColumnInfo info)
Description copied from interface:TableColumnExtraInfoListener
Provide the app with information about your Table Column- Specified by:
fillTableColumnInfo
in interfaceTableColumnExtraInfoListener
- Parameters:
info
- Use setters to set information
-
refresh
public void refresh(TableCell cell)
Description copied from interface:TableCellRefreshListener
Triggered based on refresh interval specified inTableColumn.getRefreshInterval()
- Specified by:
refresh
in interfaceTableCellRefreshListener
- Parameters:
cell
- TableCell that the refresh trigger is for
-
cellPaint
public void cellPaint(org.eclipse.swt.graphics.GC gc, TableCellSWT cell)
- Specified by:
cellPaint
in interfaceTableCellSWTPaintListener
-
cellHover
public void cellHover(TableCell cell)
Description copied from interface:TableCellToolTipListener
triggered when a cell's tooltip is about to be displayed.- Specified by:
cellHover
in interfaceTableCellToolTipListener
- Parameters:
cell
- TableCell which the tooltip will be displayed for
-
cellHoverComplete
public void cellHoverComplete(TableCell cell)
Description copied from interface:TableCellToolTipListener
triggered when a cell's tooltip is about to be removed.- Specified by:
cellHoverComplete
in interfaceTableCellToolTipListener
- Parameters:
cell
- TableCell which the tooltip will be removed
-
-