1 /* 2 * Created on 09.08.2004 3 */ 4 package net.sourceforge.pmd.dfa.pathfinder; 5 6 7 /*** 8 * @author raik 9 * <p/> 10 * Will be executed if PathFinder finds a path. 11 */ 12 public interface Executable { 13 14 void execute(CurrentPath path); 15 }