1 package net.sf.twip; 2 3 import java.lang.annotation.*; 4 5 import net.sf.twip.parameterhandler.ParameterHandler; 6 7 /** 8 * Limits the set of valid values for a {@link TwiP parameter to a test method}. 9 * 10 * @see ParameterHandler for the allowed expressions 11 */ 12 @Retention(RetentionPolicy.RUNTIME) 13 @Target(ElementType.PARAMETER) 14 public @interface Assume { 15 16 String value(); 17 }