01 /**
02 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
03 */
04 package net.sourceforge.pmd.dcd.graph;
05
06 /**
07 * Interface for how a node should accept a NodeVisitor. The node may choose
08 * to send the visitor to it's contained nodes.
09 */
10 public interface NodeVisitorAcceptor {
11 Object accept(NodeVisitor visitor, Object data);
12 }
|