blob: ff2b1684a61fc6e598cc77c8644fbb28f929cbf8 [file] [log] [blame]
Stuart McCullochbb014372012-06-07 21:57:32 +00001package aQute.lib.getopt;
2
3import java.util.*;
4
5public interface Options {
6 List<String> _();
Stuart McCulloch2286f232012-06-15 13:27:53 +00007
Stuart McCullochbb014372012-06-07 21:57:32 +00008 CommandLine _command();
Stuart McCulloch2286f232012-06-15 13:27:53 +00009
Stuart McCullochbb014372012-06-07 21:57:32 +000010 Map<String,String> _properties();
Stuart McCulloch2286f232012-06-15 13:27:53 +000011
Stuart McCullochbb014372012-06-07 21:57:32 +000012 boolean _ok();
Stuart McCulloch2286f232012-06-15 13:27:53 +000013
Stuart McCullochbb014372012-06-07 21:57:32 +000014 boolean _help();
15}