regenerated xtend code & cleanup imports

Signed-off-by: Christian Dietrich <christian.dietrich@itemis.de>
This commit is contained in:
Christian Dietrich 2020-03-05 19:58:35 +01:00
parent dd54880350
commit 0d3bbbc5fc
4 changed files with 5 additions and 5 deletions
org.eclipse.xtext.ide/src/org/eclipse/xtext/ide
org.eclipse.xtext/xtend-gen/org/eclipse/xtext/generator/trace/node

View file

@ -8,12 +8,12 @@
*/
package org.eclipse.xtext.ide.editor.bracketmatching;
import com.google.inject.Singleton;
import java.util.Collections;
import org.eclipse.xtext.ide.editor.bracketmatching.BracePair;
import org.eclipse.xtext.ide.editor.bracketmatching.DefaultBracePairProvider;
import org.eclipse.xtext.xbase.lib.CollectionLiterals;
import com.google.inject.Singleton;
/**
* @author kosyakov - Initial contribution and API
*/

View file

@ -8,8 +8,6 @@
*/
package org.eclipse.xtext.ide.server;
import org.eclipse.xtext.ide.server.ILanguageServerAccess;
/**
* Interface for language specific extensions to LSP. Implementors should use {@link JsonRpcNotification} and {@link
* JsonRpcRequest} annotations.

View file

@ -15,6 +15,7 @@ import org.eclipse.xtext.generator.trace.node.TracedProcessor;
* @author Sven Efftinge - Initial contribution and API
*/
@Active(TracedProcessor.class)
@SuppressWarnings("all")
public @interface Traced {
public String tracingSugarFieldName() default "_traceExtensions";
public boolean useForDebugging() default false;

View file

@ -16,6 +16,7 @@ import org.eclipse.xtext.generator.trace.node.TracedAccessorsProcessor;
* @author Sven Efftinge - Initial contribution and API
*/
@Active(TracedAccessorsProcessor.class)
@SuppressWarnings("all")
public @interface TracedAccessors {
public Class<? extends EFactory>[] value();
}