01: /* 02: * Created on 09.08.2004 03: */ 04: package net.sourceforge.pmd.dfa.pathfinder; 05: 06: /** 07: * @author raik 08: * <p/> 09: * Will be executed if PathFinder finds a path. 10: */ 11: public interface Executable { 12: 13: void execute(CurrentPath path); 14: }