Package org.eclipse.jface.viewers
Class FocusCellHighlighter
java.lang.Object
org.eclipse.jface.viewers.FocusCellHighlighter
- Direct Known Subclasses:
- FocusCellOwnerDrawHighlighter
- Since:
- 3.3
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidfocusCellChanged(ViewerCell cell) Deprecated.protected voidfocusCellChanged(ViewerCell newCell, ViewerCell oldCell) Called by the framework when the focus cell has changed.protected voidinit()This method is called by the framework to initialize this cell highlighter object.
- 
Constructor Details- 
FocusCellHighlighter- Parameters:
- viewer- the attached viewer
 
 
- 
- 
Method Details- 
getFocusCell- Returns:
- the focus cell
 
- 
focusCellChangedDeprecated.usefocusCellChanged(ViewerCell, ViewerCell)insteadCalled by the framework when the focus cell has changed. Subclasses may extend.- Parameters:
- cell- the new focus cell or- nullif no new cell receives the focus
 
- 
focusCellChangedCalled by the framework when the focus cell has changed. Subclasses may extend.The default implementation for this method calls focusCellChanged(ViewerCell). Subclasses should override this method rather than focusCellChanged(ViewerCell).- Parameters:
- newCell- the new focus cell or- nullif no new cell receives the focus
- oldCell- the old focus cell or- nullif no cell has been focused before
- Since:
- 3.4
 
- 
initprotected void init()This method is called by the framework to initialize this cell highlighter object. Subclasses may extend.
 
- 
focusCellChanged(ViewerCell, ViewerCell)instead