Package org.eclipse.jface.text.link
Interface LinkedModeUI.ILinkedModeUIFocusListener
-
- All Known Implementing Classes:
LinkedModeUI.LinkedModeUITarget
- Enclosing class:
- LinkedModeUI
public static interface LinkedModeUI.ILinkedModeUIFocusListenerListener that gets notified when the linked mode UI switches its focus position.Clients may implement this interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidlinkingFocusGained(LinkedPosition position, LinkedModeUI.LinkedModeUITarget target)Called when the UI for the linked mode gives focus to a linked position.voidlinkingFocusLost(LinkedPosition position, LinkedModeUI.LinkedModeUITarget target)Called when the UI for the linked mode leaves a linked position.
-
-
-
Method Detail
-
linkingFocusLost
void linkingFocusLost(LinkedPosition position, LinkedModeUI.LinkedModeUITarget target)
Called when the UI for the linked mode leaves a linked position.- Parameters:
position- the position being lefttarget- the target wherepositionresides in
-
linkingFocusGained
void linkingFocusGained(LinkedPosition position, LinkedModeUI.LinkedModeUITarget target)
Called when the UI for the linked mode gives focus to a linked position.- Parameters:
position- the position being enteredtarget- the target wherepositionresides in
-
-