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