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