Class OptionCollector
- java.lang.Object
-
- org.sosy_lab.common.configuration.OptionCollector
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidcollectOptions(boolean verbose, boolean includeLibraryOptions, PrintStream out)This function collects options from all classes and outputs them.static voidmain(String[] args)The main-method collects all classes of a program and then it searches for allOptions.
-
-
-
Method Detail
-
main
public static void main(String[] args)
The main-method collects all classes of a program and then it searches for allOptions.- Parameters:
args- use '-v' for verbose output
-
collectOptions
public static void collectOptions(boolean verbose, boolean includeLibraryOptions, PrintStream out)This function collects options from all classes and outputs them. Error message are written to System.err.- Parameters:
verbose- short or long output?includeLibraryOptions- whether options defined by libraries on the classpath should be includedout- the output target
-
-