mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 08:48:55 +00:00
[bug 490758] Postpone making the reference finder API public
Change-Id: I6a166f445ee1baa96183547e5c8e8c84ecaa30a2 Signed-off-by: akosyakov <anton.kosyakov@typefox.io>
This commit is contained in:
parent
4ff2180e18
commit
d78a808933
7 changed files with 1 additions and 9 deletions
|
@ -20,7 +20,7 @@ Export-Package: org.eclipse.xtext,
|
|||
org.eclipse.xtext.diagnostics,
|
||||
org.eclipse.xtext.documentation,
|
||||
org.eclipse.xtext.documentation.impl,
|
||||
org.eclipse.xtext.findReferences,
|
||||
org.eclipse.xtext.findReferences;x-internal:=true,
|
||||
org.eclipse.xtext.formatting,
|
||||
org.eclipse.xtext.formatting.impl,
|
||||
org.eclipse.xtext.formatting2;
|
||||
|
|
|
@ -37,8 +37,6 @@ import com.google.inject.ImplementedBy;
|
|||
*
|
||||
* @author Jan Koehnlein - Initial contribution and API in xtext.ui
|
||||
* @author Sebastian Zarnekow - Extracted headless API
|
||||
*
|
||||
* @since 2.10
|
||||
*/
|
||||
@ImplementedBy(ReferenceFinder.class)
|
||||
public interface IReferenceFinder {
|
||||
|
|
|
@ -23,8 +23,6 @@ import org.eclipse.xtext.util.IAcceptor
|
|||
*
|
||||
* @author Sebastian Zarnekow - Initial contribution and API
|
||||
* @author kosyakov - Pulled up to the runtime project
|
||||
*
|
||||
* @since 2.10
|
||||
*/
|
||||
@FinalFieldsConstructor
|
||||
class ReferenceAcceptor implements IReferenceFinder.Acceptor {
|
||||
|
|
|
@ -36,7 +36,6 @@ import com.google.inject.Singleton;
|
|||
|
||||
/**
|
||||
* @author Sebastian Zarnekow - Initial contribution and API
|
||||
* @since 2.10
|
||||
*/
|
||||
@Singleton
|
||||
public class ReferenceFinder implements IReferenceFinder {
|
||||
|
|
|
@ -27,7 +27,6 @@ import com.google.inject.Singleton;
|
|||
* targets.
|
||||
*
|
||||
* @author Sebastian Zarnekow - Initial contribution and API
|
||||
* @since 2.10
|
||||
*/
|
||||
@Singleton
|
||||
public class TargetURICollector {
|
||||
|
|
|
@ -26,7 +26,6 @@ import com.google.common.collect.Sets;
|
|||
* the old APIs.
|
||||
*
|
||||
* @author Sebastian Zarnekow - Initial contribution and API
|
||||
* @since 2.10
|
||||
*/
|
||||
public class TargetURISet extends AbstractSet<URI> implements TargetURIs {
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@ import com.google.inject.ImplementedBy;
|
|||
* a given {@link Key key}.
|
||||
*
|
||||
* @author Sebastian Zarnekow - Initial contribution and API
|
||||
* @since 2.10
|
||||
*/
|
||||
@ImplementedBy(TargetURISet.class)
|
||||
public interface TargetURIs extends Iterable<URI>, Predicate<URI> {
|
||||
|
|
Loading…
Reference in a new issue