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 Summary
Modifier and TypeMethodDescriptionstatic ContentAssistHandler
createHandlerForCombo
(Combo combo, SubjectControlContentAssistant contentAssistant) Deprecated.Creates a newContentAssistHandler
for the givenCombo
.static ContentAssistHandler
createHandlerForText
(Text text, SubjectControlContentAssistant contentAssistant) Deprecated.Creates a newContentAssistHandler
for the givenText
.boolean
Deprecated.void
setEnabled
(boolean enable) Deprecated.Controls enablement of content assist.
-
Method Details
-
createHandlerForCombo
public static ContentAssistHandler createHandlerForCombo(Combo combo, SubjectControlContentAssistant contentAssistant) Deprecated.Creates a newContentAssistHandler
for the givenCombo
. Only a singleContentAssistHandler
may be installed on aCombo
instance. Content Assist is enabled by default.- Parameters:
combo
- target combocontentAssistant
- a configured content assistant- Returns:
- a new
ContentAssistHandler
-
createHandlerForText
public static ContentAssistHandler createHandlerForText(Text text, SubjectControlContentAssistant contentAssistant) Deprecated.Creates a newContentAssistHandler
for the givenText
. Only a singleContentAssistHandler
may be installed on aText
instance. Content Assist is enabled by default.- Parameters:
text
- target textcontentAssistant
- a configured content assistant- Returns:
- a new
ContentAssistHandler
-
isEnabled
public boolean isEnabled()Deprecated.- Returns:
true
iff content assist is enabled
-
setEnabled
public 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
-