Package org.eclipse.jface.text.source
Interface IAnnotationHoverExtension
- All Known Implementing Classes:
LineChangeHover
public interface IAnnotationHoverExtension
Extension interface for
IAnnotationHover
for
- providing its own information control creator
- providing the range of lines for which the hover for a given line is valid
- providing whether the information control can interact with the mouse cursor
- Since:
- 3.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns whether the provided information control can interact with the mouse cursor.Returns the hover control creator of this annotation hover.getHoverInfo
(ISourceViewer sourceViewer, ILineRange lineRange, int visibleNumberOfLines) Returns the object which should be presented in the a hover popup window.getHoverLineRange
(ISourceViewer viewer, int lineNumber) Returns the range of lines that include the given line number for which the same hover information is valid.
-
Method Details
-
getHoverControlCreator
IInformationControlCreator getHoverControlCreator()Returns the hover control creator of this annotation hover.- Returns:
- the hover control creator
-
canHandleMouseCursor
boolean canHandleMouseCursor()Returns whether the provided information control can interact with the mouse cursor. I.e. the hover must implement custom information control management.- Returns:
true
if the mouse cursor can be handled
-
getHoverInfo
Returns the object which should be presented in the a hover popup window. The information is requested based on the specified line range.- Parameters:
sourceViewer
- the source viewer this hover is registered withlineRange
- the line range for which information is requestedvisibleNumberOfLines
- the number of visible lines- Returns:
- the requested information or
null
if no such information exists
-
getHoverLineRange
Returns the range of lines that include the given line number for which the same hover information is valid.- Parameters:
viewer
- the viewer which the hover is queried forlineNumber
- the line number of the line for which a hover is displayed for- Returns:
- the computed line range or
null
for no range
-