1 /*2 * Created on 08-Feb-20053 *4 * @todo To change the template for this generated file go to5 * Window - Preferences - Java - Code Style - Code Templates6 */7 package uk.ac.roe.antigen.builder;8 9 import java.util.Vector ;10 11 /**12 * @author jdt13 *14 * @todo To change the template for this generated type comment go to15 * Window - Preferences - Java - Code Style - Code Templates16 */17 public interface TargetChooser {18 final String ANTIGEN_TARGET_ = "antigen.target.";19 public static final String ANTIGEN_TARGETS = "antigen.targets";20 /**21 * Display the dialog and return an array of the selected options22 * 23 * @return24 */25 public abstract Vector showAndWaitForResponse();26 }