| com.sun.tools.javac.main.JavacOption
JavacOption | public interface JavacOption (Code) | | TODO: describe com.sun.tools.javac.main.JavacOption
This is NOT part of any API supported by Sun Microsystems.
If you write code that depends on this, you do so at your own
risk. This code and its internal interfaces are subject to change
or deletion without notice.
|
Inner Class : enum OptionKind | |
Inner Class :static class Option implements JavacOption | |
Inner Class :static class XOption extends Option | |
Inner Class :static class HiddenOption extends Option | |
getKind | OptionKind getKind()(Code) | | |
hasArg | boolean hasArg()(Code) | | Does this option take a (separate) operand?
|
matches | boolean matches(String arg)(Code) | | Does argument string match option pattern?
Parameters: arg - The command line argument string. |
process | boolean process(Options options, String option, String arg)(Code) | | Process the option (with arg). Return true if error detected.
|
process | boolean process(Options options, String option)(Code) | | Process the option (without arg). Return true if error detected.
|
|
|