View Javadoc
1 /*** 2 * QuiltOptions 3 * 4 * These are standard options for running quilt. 5 */ 6 7 package junit.quilt; 8 9 import org.apache.commons.cli.*; 10 11 public class QuiltOptions extends Options 12 { 13 public QuiltOptions() { 14 super(); 15 addOption('q', "registry", true, 16 "Class name of registry used for instrumentation."); 17 addOption('r', "report", true, 18 "Class name of report generator."); 19 addOption('t', "test", true, 20 "Class name of test to run."); 21 addOption('v', "version", true, 22 "Print version information."); 23 addOption('h', "help", true, 24 "Print usage information."); 25 } 26 27 public static final char OPT_REGISTRY = 'q'; 28 public static final char OPT_REPORT = 'r'; 29 public static final char OPT_TEST = 't'; 30 public static final char OPT_VERSION = 'v'; 31 public static final char OPT_HELP = 'h'; 32 } 33

This page was automatically generated by Maven