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