Definition of a Visitor interface for a configuration node structure.
This is a typical application of the GoF Visitor pattern. An object implementing this interface can be used to traverse a hierarchical structure of nodes in various ways. The type of the nodes in the structure is generic; a corresponding {@link NodeHandler} implementation must be available fornavigating through the structure.
Note that the exact way the methods of a {@code ConfigurationNodeVisitor} areinvoked is dependent on a specific traversal process.
@since 1.3 @version $Id: ConfigurationNodeVisitor.java 1624601 2014-09-12 18:04:36Z oheger $ @param < T> the type of the nodes processed by this visitor
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|