Package org.eclipse.ui.contentassist
Class ContentAssistHandler
java.lang.Object
org.eclipse.ui.contentassist.ContentAssistHandler
Deprecated.
As of 3.2, replaced by JFace field assist support
A content assistant handler which handles the key binding and
 the cue for a 
ContentAssistant
 and its subject adapter.- Since:
- 3.0
- 
Method SummaryModifier and TypeMethodDescriptionstatic ContentAssistHandlercreateHandlerForCombo(Combo combo, SubjectControlContentAssistant contentAssistant) Deprecated.Creates a newContentAssistHandlerfor the givenCombo.static ContentAssistHandlercreateHandlerForText(Text text, SubjectControlContentAssistant contentAssistant) Deprecated.Creates a newContentAssistHandlerfor the givenText.booleanDeprecated.voidsetEnabled(boolean enable) Deprecated.Controls enablement of content assist.
- 
Method Details- 
createHandlerForCombopublic static ContentAssistHandler createHandlerForCombo(Combo combo, SubjectControlContentAssistant contentAssistant) Deprecated.Creates a newContentAssistHandlerfor the givenCombo. Only a singleContentAssistHandlermay be installed on aComboinstance. Content Assist is enabled by default.- Parameters:
- combo- target combo
- contentAssistant- a configured content assistant
- Returns:
- a new ContentAssistHandler
 
- 
createHandlerForTextpublic static ContentAssistHandler createHandlerForText(Text text, SubjectControlContentAssistant contentAssistant) Deprecated.Creates a newContentAssistHandlerfor the givenText. Only a singleContentAssistHandlermay be installed on aTextinstance. Content Assist is enabled by default.- Parameters:
- text- target text
- contentAssistant- a configured content assistant
- Returns:
- a new ContentAssistHandler
 
- 
isEnabledpublic boolean isEnabled()Deprecated.- Returns:
- trueiff content assist is enabled
 
- 
setEnabledpublic void setEnabled(boolean enable) Deprecated.Controls enablement of content assist. When enabled, a cue is shown next to the focused field and the affordance hover shows the shortcut.- Parameters:
- enable- enable content assist iff true
 
 
-