Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/editor/PDAContentAssistant.java')
-rw-r--r--org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/editor/PDAContentAssistant.java30
1 files changed, 15 insertions, 15 deletions
diff --git a/org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/editor/PDAContentAssistant.java b/org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/editor/PDAContentAssistant.java
index 396b362bd..67b543bdd 100644
--- a/org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/editor/PDAContentAssistant.java
+++ b/org.eclipse.debug.examples.ui/src/org/eclipse/debug/examples/ui/pda/editor/PDAContentAssistant.java
@@ -23,24 +23,24 @@ import org.eclipse.swt.widgets.Shell;
public class PDAContentAssistant extends ContentAssistant {
- public PDAContentAssistant() {
- super();
+ public PDAContentAssistant() {
+ super();
- PDAContentAssistProcessor processor= new PDAContentAssistProcessor();
- setContentAssistProcessor(processor, IDocument.DEFAULT_CONTENT_TYPE);
+ PDAContentAssistProcessor processor= new PDAContentAssistProcessor();
+ setContentAssistProcessor(processor, IDocument.DEFAULT_CONTENT_TYPE);
- enableAutoActivation(false);
- enableAutoInsert(false);
+ enableAutoActivation(false);
+ enableAutoInsert(false);
- setInformationControlCreator(getInformationControlCreator());
- }
+ setInformationControlCreator(getInformationControlCreator());
+ }
- private IInformationControlCreator getInformationControlCreator() {
- return new IInformationControlCreator() {
- @Override
+ private IInformationControlCreator getInformationControlCreator() {
+ return new IInformationControlCreator() {
+ @Override
public IInformationControl createInformationControl(Shell parent) {
- return new DefaultInformationControl(parent);
- }
- };
- }
+ return new DefaultInformationControl(parent);
+ }
+ };
+ }
}

Back to the top