Package org.eclipse.core.resources
Interface IResourceVisitor
-
- All Known Implementing Classes:
RecursiveFileFinder
public interface IResourceVisitorThis interface is implemented by objects that visit resource trees.Usage:
class Visitor implements IResourceVisitor { public boolean visit(IResource res) { // your code here return true; } } IResource root = ...; root.accept(new Visitor());Clients may implement this interface.
- See Also:
IResource.accept(IResourceVisitor)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanvisit(IResource resource)Visits the given resource.
-
-
-
Method Detail
-
visit
boolean visit(IResource resource) throws CoreException
Visits the given resource.- Parameters:
resource- the resource to visit- Returns:
trueif the resource's members should be visited;falseif they should be skipped- Throws:
CoreException- if the visit fails for some reason.
-
-