1 /* 2 * Created on May 18, 2005 3 * 4 * TheLittleContainer core interface for a target loader. 5 */ 6 package net.sf.tlc.core; 7 8 /*** 9 * TheLittleContainer core interface for a target loader. 10 * 11 * @author aisrael 12 */ 13 public interface TargetLauncher { 14 15 /*** 16 * Attempt to find and load all available targets. 17 */ 18 void loadTargets(); 19 }