1: package net.sourceforge.pmd.dcd.graph;
2:
3: /**
4: * Interface for how a node should accept a NodeVisitor. The node may choose
5: * to send the visitor to it's contained nodes.
6: */
7: publicinterface NodeVisitorAcceptor {
8: Object accept(NodeVisitor visitor, Object data);
9: }