Accepts the given visitor. The only kinds of resource deltas visited are
ADDED
,
REMOVED
, and
CHANGED
. The visitor's
visit
method is called with this resource delta if applicable. If the visitor returns
true
, the resource delta's children are also visited.
This is a convenience method, fully equivalent to accept(visitor, IResource.NONE)
. Although the visitor will be invoked for this resource delta, it will not be invoked for any team-private member resources.
@param visitor the visitor
@exception CoreException if the visitor failed with this exception.
@see IResourceDeltaVisitor#visit(IResourceDelta)