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