Package org.fife.ui.autocomplete
Interface DescWindowCallback
-
- All Known Implementing Classes:
AutoCompleteDescWindow
public interface DescWindowCallback
Passed toExternalURLHandler
s as a way for them to display a summary for a new completion in response to a link event.- Version:
- 1.0
- See Also:
ExternalURLHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
showSummaryFor(Completion completion, java.lang.String anchor)
Callback allowing a new code completion's description to be displayed in the description window.
-
-
-
Method Detail
-
showSummaryFor
void showSummaryFor(Completion completion, java.lang.String anchor)
Callback allowing a new code completion's description to be displayed in the description window.- Parameters:
completion
- The new completion.anchor
- The anchor to scroll to, ornull
if none.
-
-