Class Visitors<N>

java.lang.Object
ch.tocco.nice2.toolbox.api.collection.Visitors<N>
Direct Known Subclasses:
NodeVisitors

public abstract class Visitors<N> extends Object
Abstract class that implements visiting code. Two callbacks must be provided for those algorithms, one to retrieve the parent of a node and and the other to get children of a node.

This class is meant to be overriden to apply concrete logic. See ch.tocco.nice2.dbrefactoring.model.NodeVisitors for an example.