Target.java |
1 package org.tp23.antinstaller.input; 2 /** 3 * Indicates the input type is a target based type and requires special 4 * processing in the properties loader 5 * @author teknopaul 6 * 7 */ 8 public interface Target { 9 public int getIdx(); 10 public String getTarget(); 11} 12