The interface representing a single item of the result list that can be displayed in the completion popup.
Returns a task used to obtain a documentation associated with the item if there is any.
Returns a task used to obtain a tooltip hint associated with the item if there is any.
Gets invoked when user presses VK_ENTER
key
or when she double-clicks on this item with the mouse cursor.
This method gets invoked from AWT thread.
Returns a text used for finding of a longest common prefix
after the TAB gets pressed or when the completion is opened explicitly.
The completion infrastructure will evaluate the insert prefixes
of all the items present in the visible result and finds the longest
common prefix.
Generally the returned text does not need to contain all the information
that gets inserted when the item is selected.
For example in java completion the field name should be returned for fields
or a method name for methods (but not parameters)
or a non-FQN name for classes.
Get the preferred visual width of this item.
The visual height of the item is fixed to 16 points.
Returns the item's priority. A lower value means a lower index of the item in the completion result list.
Returns a text used to sort items alphabetically.
When enabled for the item the instant substitution should process the item
in the same way like when the item is displayed and Enter key gets pressed
by the user.
Instant substitution is invoked when there would be just a single item
displayed in the completion popup window.
The implementation can invoke the {@link #defaultAction(JTextComponent)}
if necessary.
This method gets invoked from AWT thread.
true
if the instant substitution was successfully done.
false
means that the instant substitution should not be done
for this item and the completion item should normally be displayed.
Process the key pressed when this completion item was selected
in the completion popup window.
This method gets invoked from AWT thread.
Render this item into the given graphics.