mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 08:18:55 +00:00
Regenerated xtext language
I ran ./gradlew generateXtextLanguage and these changes happend Signed-off-by: Julian Dax <jdax@itemis.com>
This commit is contained in:
parent
827be6cc3a
commit
600dd0c862
1 changed files with 13 additions and 0 deletions
|
@ -11,6 +11,9 @@ import org.eclipse.xtext.ide.editor.contentassist.IProposalConflictHelper;
|
|||
import org.eclipse.xtext.ide.editor.contentassist.antlr.AntlrProposalConflictHelper;
|
||||
import org.eclipse.xtext.ide.editor.contentassist.antlr.IContentAssistParser;
|
||||
import org.eclipse.xtext.ide.editor.contentassist.antlr.internal.Lexer;
|
||||
import org.eclipse.xtext.ide.refactoring.IRenameStrategy2;
|
||||
import org.eclipse.xtext.ide.server.rename.IRenameService;
|
||||
import org.eclipse.xtext.ide.server.rename.RenameService;
|
||||
import org.eclipse.xtext.xtext.ide.contentassist.antlr.XtextParser;
|
||||
import org.eclipse.xtext.xtext.ide.contentassist.antlr.internal.InternalXtextLexer;
|
||||
|
||||
|
@ -37,4 +40,14 @@ public abstract class AbstractXtextIdeModule extends DefaultIdeModule {
|
|||
return AntlrProposalConflictHelper.class;
|
||||
}
|
||||
|
||||
// contributed by org.eclipse.xtext.xtext.generator.ui.refactoring.RefactorElementNameFragment2
|
||||
public Class<? extends IRenameService> bindIRenameService() {
|
||||
return RenameService.class;
|
||||
}
|
||||
|
||||
// contributed by org.eclipse.xtext.xtext.generator.ui.refactoring.RefactorElementNameFragment2
|
||||
public Class<? extends IRenameStrategy2> bindIRenameStrategy2() {
|
||||
return IRenameStrategy2.DefaultImpl.class;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue