Package org.eclipse.search.core.text
Class TextSearchScope
java.lang.Object
org.eclipse.search.core.text.TextSearchScope
- Direct Known Subclasses:
FileTextSearchScope
A
TextSearchScope
defines the scope of a search. The scope consists of all workbench resources that are accepted
by contains(IResourceProxy)
and that either are a root element (getRoots()
) or have a root element
in their parent chain.- Since:
- 3.2
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract boolean
contains
(IResourceProxy proxy) Returns if a given resource is part of the scope.IFile[]
evaluateFilesInScope
(MultiStatus status) Evaluates all files in this scope.getRoots()
Returns the resources that form the root.static TextSearchScope
newSearchScope
(IResource[] rootResources, Pattern fileNamePattern, boolean visitDerivedResources) Creates a scope that consists of all files that match thefileNamePattern
and that either are one of the roots, or have one of the roots in their parent chain.
-
Constructor Details
-
TextSearchScope
public TextSearchScope()
-
-
Method Details
-
newSearchScope
public static TextSearchScope newSearchScope(IResource[] rootResources, Pattern fileNamePattern, boolean visitDerivedResources) Creates a scope that consists of all files that match thefileNamePattern
and that either are one of the roots, or have one of the roots in their parent chain. IfvisitDerivedResources
is not enabled, all files that are marked derived or have a derived container in their parent chain are not part of the scope.- Parameters:
rootResources
- the resources that are the roots of the scopefileNamePattern
- file name pattern for this scope.visitDerivedResources
- if set also derived folders and files are searched.- Returns:
- a scope the search scope
-
getRoots
Returns the resources that form the root. Roots can not contain each other. Root elements are only part of the scope if they are also accepted bycontains(IResourceProxy)
.- Returns:
- returns the set of root resources. The default behavior is to return the workspace root.
-
contains
Returns if a given resource is part of the scope. If a container is not part of the scope, also all its members are not part of the scope.- Parameters:
proxy
- the resource proxy to test.- Returns:
- returns
true
if a resource is part of the scope. iffalse
is returned the resource and all its children are not part of the scope.
-
evaluateFilesInScope
Evaluates all files in this scope.- Parameters:
status
- aMultiStatus
to collect the error status that occurred while collecting resources.- Returns:
- returns the files in the scope.
-