|
Eclipse Platform 2.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
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(org.eclipse.core.resources.IResourceProxyVisitor, int)
Method Summary | |
boolean |
visit(IResource resource)
Visits the given resource. |
Method Detail |
public boolean visit(IResource resource) throws CoreException
resource
- the resource to visittrue
if the resource's members should
be visited; false
if they should be skippedCoreException
- if the visit fails for some reason.
|
Eclipse Platform 2.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |