[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:
akosyakov 2016-05-17 14:35:29 +02:00
parent 4ff2180e18
commit d78a808933
7 changed files with 1 additions and 9 deletions

View file

@ -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;

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {

View file

@ -27,7 +27,6 @@ import com.google.inject.Singleton;
* targets.
*
* @author Sebastian Zarnekow - Initial contribution and API
* @since 2.10
*/
@Singleton
public class TargetURICollector {

View file

@ -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 {

View file

@ -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> {