public interface CompletionProvider<T>
T is the type of object representing each cell in the insight list (e.g. String, File)
| Modifier and Type | Method and Description |
|---|---|
void |
completeInsight(javax.swing.text.Document doc,
int pos,
T insightObject)
Complete insight for the specified position in the specified document,
using the specified insight object.
|
javax.swing.ListCellRenderer |
getCellRenderer()
Get the cell renderer used for the completion list this provider handles.
|
T[] |
getInsightData(javax.swing.text.Document doc,
int pos)
Get insight data for the specified position in the specified document.
|
boolean |
handlesInsight(javax.swing.text.Document doc,
int pos)
Does this provider handle insight for the specified document? This method
is normally called when an insight trigger of some kind happens (e.g.
|
boolean |
isAutoPopupChar(char c)
Should the specified character trigger an automatic popup completion
list that might be handled by this insight provider?
|
javax.swing.ListCellRenderer getCellRenderer()
boolean handlesInsight(javax.swing.text.Document doc,
int pos)
doc - the document of the component to provide insight forpos - the current caret position within the documentT[] getInsightData(javax.swing.text.Document doc, int pos)
doc - the document to provide insight forpos - the current caret position within the documentvoid completeInsight(javax.swing.text.Document doc,
int pos,
T insightObject)
doc - the document to completepos - the position to complete atinsightObject - the insight object to complete withboolean isAutoPopupChar(char c)
c - the character before the caret position.