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