blob: aab2b7fc8e855cc2365cc4bc4ea9fdda832f9f09 [file] [log] [blame]
Stuart McCullochf3173222012-06-07 21:57:32 +00001package aQute.lib.getopt;
2
3import java.util.*;
4
5public interface Options {
6 List<String> _();
7 CommandLine _command();
8 Map<String,String> _properties();
9 boolean _ok();
10 boolean _help();
11}