| author | Thomasz Zarna | 2012-06-28 05:07:09 (EDT) |
|---|---|---|
| committer | Ayushman Jain | 2012-06-28 05:07:09 (EDT) |
| commit | 1a177e3daac831c8fb9d43bf95bfb66e231eb6be (patch) (side-by-side diff) | |
| tree | d9f47578bca795e7810ce0b34a4950efec9eadf4 | |
| parent | 74fed5493a5e05f9b2b1c69610952bdae1f33d7e (diff) | |
| download | eclipse.jdt.core-1a177e3daac831c8fb9d43bf95bfb66e231eb6be.zip eclipse.jdt.core-1a177e3daac831c8fb9d43bf95bfb66e231eb6be.tar.gz eclipse.jdt.core-1a177e3daac831c8fb9d43bf95bfb66e231eb6be.tar.bz2 | |
Fixed bug 382836: In IJavaSearchScope do not suggest to use deprecated
method
| -rw-r--r-- | org.eclipse.jdt.core/search/org/eclipse/jdt/core/search/IJavaSearchScope.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/org.eclipse.jdt.core/search/org/eclipse/jdt/core/search/IJavaSearchScope.java b/org.eclipse.jdt.core/search/org/eclipse/jdt/core/search/IJavaSearchScope.java index 70a6490..64776ec 100644 --- a/org.eclipse.jdt.core/search/org/eclipse/jdt/core/search/IJavaSearchScope.java +++ b/org.eclipse.jdt.core/search/org/eclipse/jdt/core/search/IJavaSearchScope.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2009 IBM Corporation and others. + * Copyright (c) 2000, 2012 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -12,14 +12,15 @@ package org.eclipse.jdt.core.search; import org.eclipse.core.runtime.IPath; import org.eclipse.jdt.core.IJavaElement; +import org.eclipse.jdt.core.IType; /** * An <code>IJavaSearchScope</code> defines where search result should be found by a * <code>SearchEngine</code>. Clients must pass an instance of this interface - * to the <code>search(...)</code> methods. Such an instance can be created using the - * following factory methods on <code>SearchEngine</code>: <code>createHierarchyScope(IType)</code>, - * <code>createJavaSearchScope(IResource[])</code>, <code>createWorkspaceScope()</code>, or - * clients may choose to implement this interface. + * to the <code>search(...)</code> methods. Such an instance can be created + * using the following factory methods: {@link SearchEngine#createHierarchyScope(IType)}, + * {@link SearchEngine#createJavaSearchScope(IJavaElement[])}, {@link SearchEngine#createWorkspaceScope()} or clients + * may choose to implement this interface. */ public interface IJavaSearchScope { /** |

