mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 00:38:56 +00:00
UI crossref
This commit is contained in:
parent
930dd4f036
commit
70bcdef81a
3 changed files with 7 additions and 2 deletions
|
@ -12,6 +12,9 @@ Export-Package: org.eclipse.xtext,
|
|||
org.eclipse.xtext.builtin.conversion,
|
||||
org.eclipse.xtext.conversion,
|
||||
org.eclipse.xtext.conversion.impl,
|
||||
org.eclipse.xtext.crossref,
|
||||
org.eclipse.xtext.crossref.impl,
|
||||
org.eclipse.xtext.crossref.internal,
|
||||
org.eclipse.xtext.junit,
|
||||
org.eclipse.xtext.parser,
|
||||
org.eclipse.xtext.parser.antlr,
|
||||
|
|
|
@ -3,7 +3,8 @@ package org.eclipse.xtext.crossref;
|
|||
import java.util.List;
|
||||
|
||||
import org.eclipse.emf.ecore.EObject;
|
||||
import org.eclipse.xtext.service.ILanguageService;
|
||||
|
||||
public interface ILinker {
|
||||
public interface ILinker extends ILanguageService{
|
||||
public List<BrokenLink> ensureLinked(EObject obj);
|
||||
}
|
||||
|
|
|
@ -10,12 +10,13 @@ package org.eclipse.xtext.crossref;
|
|||
|
||||
import org.eclipse.emf.common.util.URI;
|
||||
import org.eclipse.emf.ecore.EObject;
|
||||
import org.eclipse.xtext.service.ILanguageService;
|
||||
|
||||
/**
|
||||
* @author Sven Efftinge - Initial contribution and API
|
||||
*
|
||||
*/
|
||||
public interface IURIChecker {
|
||||
public interface IURIChecker extends ILanguageService {
|
||||
/**
|
||||
* @param uri
|
||||
* @param context
|
||||
|
|
Loading…
Reference in a new issue