Eclipse Platform
2.0

org.eclipse.core.resources
Interface IResourceVisitor


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:
IResource.accept(org.eclipse.core.resources.IResourceVisitor)

Method Summary
 boolean visit(IResource resource)
          Visits the given resource.
 

Method Detail

visit

public boolean visit(IResource resource)
              throws CoreException
Visits the given resource.

Parameters:
resource - the resource to visit
Returns:
true if the resource's members should be visited; false if they should be skipped
Throws:
CoreException - if the visit fails for some reason.

Eclipse Platform
2.0

Copyright (c) IBM Corp. and others 2000, 2002. All Rights Reserved.