public interface IDiffVisitor
Usage:
class Visitor implements IDiffVisitor { public boolean visit(IDiffNode diff) { switch (diff.getKind()) { case IResourceDelta.ADDED : // handle added resource break; case IResourceDelta.REMOVED : // handle removed resource break; case IResourceDelta.CHANGED : // handle changed resource break; } return true; } } IDiffTree tree = ...; tree.accept(new Visitor());
Clients may implement this interface.
IDiffTree.accept(org.eclipse.core.runtime.IPath, IDiffVisitor, int)
Modifier and Type | Method and Description |
---|---|
boolean |
visit(IDiff diff)
Visits the given diff.
|
boolean visit(IDiff diff)
diff
- the diff being visitedtrue
if the diff's children should
be visited; false
if they should be skipped.
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.