View Javadoc

1   /*
2    * Created on May 19, 2005
3    *
4    * TheLittleContainer core interface for a target finder.
5    */
6   package net.sf.tlc.core;
7   
8   import net.sf.tlc.model.Target;
9   
10  /***
11   * TheLittleContainer core interface for a target finder.
12   * 
13   * @author aisrael
14   */
15  public interface TargetFinder {
16  
17      /***
18       * Return an array of Target objects on identified targets in the targetPath
19       * 
20       * @return an array of Target objects of identified targets in the
21       *         targetPath
22       */
23      Target[] listTargets();
24  
25  }