public final class TreeDependencyVisitor extends Object implements DependencyVisitor
| Constructor and Description |
|---|
TreeDependencyVisitor(DependencyVisitor visitor)
Creates a new visitor that delegates to the specified visitor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
visitEnter(DependencyNode node)
Notifies the visitor of a node visit before its children have been processed.
|
boolean |
visitLeave(DependencyNode node)
Notifies the visitor of a node visit after its children have been processed.
|
public TreeDependencyVisitor(DependencyVisitor visitor)
visitor - The visitor to delegate to, must not be null.public boolean visitEnter(DependencyNode node)
DependencyVisitorvisitEnter in interface DependencyVisitornode - The dependency node being visited, must not be null.true to visit child nodes of the specified node as well, false to skip children.public boolean visitLeave(DependencyNode node)
DependencyVisitorvisitLeave in interface DependencyVisitornode - The dependency node being visited, must not be null.true to visit siblings nodes of the specified node as well, false to skip siblings.Copyright © 2010-2014 The Eclipse Foundation. All Rights Reserved.