01: package org.tp23.antinstaller.input;
02:
03: /**
04: * Indicates the input type is a target based type and requires special
05: * processing in the properties loader
06: * @author teknopaul
07: *
08: */
09: publicinterface Target {
10: publicint getIdx();
11:
12: publicString getTarget();
13: }