/** * */ package org.streaminer.stream.classifier.tree; /** * <p> * This is the interface for the visitor pattern for trees. * </p> * * @author Christian Bockermann <christian.bockermann@udo.edu> * */ public interface Visitor<B extends BinaryTreeNode<?,?>> { public void visit( B node ); }