Package org.eclipse.jface.text.link
Interface LinkedModeUI.IExitPolicy
-
- Enclosing class:
- LinkedModeUI
public static interface LinkedModeUI.IExitPolicyAn exit policy can be registered by a caller to get custom exit behavior.Clients may implement this interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LinkedModeUI.ExitFlagsdoExit(LinkedModeModel model, VerifyEvent event, int offset, int length)Checks whether the linked mode should be left after receiving the givenVerifyEventand selection.
-
-
-
Method Detail
-
doExit
LinkedModeUI.ExitFlags doExit(LinkedModeModel model, VerifyEvent event, int offset, int length)
Checks whether the linked mode should be left after receiving the givenVerifyEventand selection. Note that the event carries widget coordinates as opposed tooffsetandlengthwhich are document coordinates.- Parameters:
model- the linked mode modelevent- the verify eventoffset- the offset of the current selectionlength- the length of the current selection- Returns:
- valid exit flags or
nullif no special action should be taken
-
-