1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.eclipse.papyrus.marte.textedit.constraintwithvsl.xtext.ui;
17
18 import org.eclipse.ui.plugin.AbstractUIPlugin;
19 import org.eclipse.xtext.ui.DefaultUiModule;
20
21
22
23
24 @SuppressWarnings("all")
25 public abstract class AbstractConstraintWithVSLlUiModule extends DefaultUiModule {
26
27 public AbstractConstraintWithVSLlUiModule(AbstractUIPlugin plugin) {
28 super(plugin);
29 }
30
31
32
33 public com.google.inject.Provider<org.eclipse.xtext.resource.containers.IAllContainersState> provideIAllContainersState() {
34 return org.eclipse.xtext.ui.shared.Access.getJavaProjectsState();
35 }
36
37
38 public Class<? extends org.eclipse.xtext.ui.editor.contentassist.IProposalConflictHelper> bindIProposalConflictHelper() {
39 return org.eclipse.xtext.ui.editor.contentassist.antlr.AntlrProposalConflictHelper.class;
40 }
41
42
43 public void configureHighlightingLexer(com.google.inject.Binder binder) {
44 binder.bind(org.eclipse.xtext.parser.antlr.Lexer.class).annotatedWith(com.google.inject.name.Names.named(org.eclipse.xtext.ui.LexerUIBindings.HIGHLIGHTING))
45 .to(org.eclipse.papyrus.marte.textedit.constraintwithvsl.xtext.parser.antlr.internal.InternalConstraintWithVSLlLexer.class);
46 }
47
48
49 public void configureHighlightingTokenDefProvider(com.google.inject.Binder binder) {
50 binder.bind(org.eclipse.xtext.parser.antlr.ITokenDefProvider.class).annotatedWith(com.google.inject.name.Names.named(org.eclipse.xtext.ui.LexerUIBindings.HIGHLIGHTING)).to(org.eclipse.xtext.parser.antlr.AntlrTokenDefProvider.class);
51 }
52
53
54 public Class<? extends org.eclipse.xtext.ui.refactoring.IDependentElementsCalculator> bindIDependentElementsCalculator() {
55 return org.eclipse.xtext.ui.refactoring.impl.DefaultDependentElementsCalculator.class;
56 }
57
58
59 @Override
60 public Class<? extends org.eclipse.jface.viewers.ILabelProvider> bindILabelProvider() {
61 return org.eclipse.papyrus.marte.textedit.constraintwithvsl.xtext.ui.labeling.ConstraintWithVSLlLabelProvider.class;
62 }
63
64
65 @Override
66 public void configureResourceUIServiceLabelProvider(com.google.inject.Binder binder) {
67 binder.bind(org.eclipse.jface.viewers.ILabelProvider.class).annotatedWith(org.eclipse.xtext.ui.resource.ResourceServiceDescriptionLabelProvider.class)
68 .to(org.eclipse.papyrus.marte.textedit.constraintwithvsl.xtext.ui.labeling.ConstraintWithVSLlDescriptionLabelProvider.class);
69 }
70
71
72 public Class<? extends org.eclipse.xtext.ui.editor.outline.IOutlineTreeProvider> bindIOutlineTreeProvider() {
73 return org.eclipse.papyrus.marte.textedit.constraintwithvsl.xtext.ui.outline.ConstraintWithVSLlOutlineTreeProvider.class;
74 }
75
76
77 public Class<? extends org.eclipse.xtext.ui.editor.outline.impl.IOutlineTreeStructureProvider> bindIOutlineTreeStructureProvider() {
78 return org.eclipse.papyrus.marte.textedit.constraintwithvsl.xtext.ui.outline.ConstraintWithVSLlOutlineTreeProvider.class;
79 }
80
81
82 @Override
83 public Class<? extends org.eclipse.xtext.ui.editor.quickfix.IssueResolutionProvider> bindIssueResolutionProvider() {
84 return org.eclipse.papyrus.marte.textedit.constraintwithvsl.xtext.ui.quickfix.ConstraintWithVSLlQuickfixProvider.class;
85 }
86
87
88 public Class<? extends org.eclipse.xtext.ui.editor.contentassist.IContentProposalProvider> bindIContentProposalProvider() {
89 return org.eclipse.papyrus.marte.textedit.constraintwithvsl.xtext.ui.contentassist.ConstraintWithVSLlProposalProvider.class;
90 }
91
92
93 public Class<? extends org.eclipse.xtext.ui.editor.contentassist.ContentAssistContext.Factory> bindContentAssistContext$Factory() {
94 return org.eclipse.xtext.ui.editor.contentassist.antlr.ParserBasedContentAssistContextFactory.class;
95 }
96
97
98 public Class<? extends org.eclipse.xtext.ui.editor.contentassist.antlr.IContentAssistParser> bindIContentAssistParser() {
99 return org.eclipse.papyrus.marte.textedit.constraintwithvsl.xtext.ui.contentassist.antlr.ConstraintWithVSLlParser.class;
100 }
101
102
103 public void configureContentAssistLexerProvider(com.google.inject.Binder binder) {
104 binder.bind(org.eclipse.papyrus.marte.textedit.constraintwithvsl.xtext.ui.contentassist.antlr.internal.InternalConstraintWithVSLlLexer.class).toProvider(
105 org.eclipse.xtext.parser.antlr.LexerProvider.create(org.eclipse.papyrus.marte.textedit.constraintwithvsl.xtext.ui.contentassist.antlr.internal.InternalConstraintWithVSLlLexer.class));
106 }
107
108
109 public void configureContentAssistLexer(com.google.inject.Binder binder) {
110 binder.bind(org.eclipse.xtext.ui.editor.contentassist.antlr.internal.Lexer.class).annotatedWith(com.google.inject.name.Names.named(org.eclipse.xtext.ui.LexerUIBindings.CONTENT_ASSIST))
111 .to(org.eclipse.papyrus.marte.textedit.constraintwithvsl.xtext.ui.contentassist.antlr.internal.InternalConstraintWithVSLlLexer.class);
112 }
113
114
115 }