Package org.eclipse.core.resources
Interface IResourceVisitor
- All Known Implementing Classes:
RecursiveFileFinder
public interface IResourceVisitor
This 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:
-
Method Summary
-
Method Details
-
visit
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.
-