Package org.apache.maven.api
Interface NodeVisitor
Defines a hierarchical visitor for collecting dependency node trees.
- Since:
 - 4.0.0
 
- 
Method Summary
 
- 
Method Details
- 
enter
Starts the visit to the specified dependency node.- Parameters:
 node- the dependency node to visit- Returns:
 trueto visit the specified dependency node's children,falseto skip the specified dependency node's children and proceed to its next sibling
 - 
leave
Ends the visit to the specified dependency node.- Parameters:
 node- the dependency node to visit- Returns:
 trueto visit the specified dependency node's next sibling,falseto skip the specified dependency node's next siblings and proceed to its parent
 
 -