|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
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.
IResource.accept(IResourceVisitor)| Method Summary | |
|---|---|
boolean |
visit(IResource resource)
Visits the given resource. |
| Method Detail |
|---|
boolean visit(IResource resource)
throws org.eclipse.core.runtime.CoreException
resource - the resource to visit
true if the resource's members should
be visited; false if they should be skipped
org.eclipse.core.runtime.CoreException - if the visit fails for some reason.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||