Home | History | Annotate | Download | only in options

Lines Matching defs:options

14 package com.google.devtools.common.options;
22 * An interface for annotating fields in classes (derived from OptionsBase) that are options.
28 * {@link com.google.devtools.common.options.processor.OptionProcessor} for details.
44 * is ignored for boolean, tristate, boolean_or_enum, and void options.
73 * This category field is deprecated. Bazel is in the process of migrating all options to use the
76 * options are using the new system.
78 * <p>Please leave the old category field in existing options to minimize disruption to the Help
96 * for this should be documented) all options should have some effect, so this needs to have at
111 * <p>Hidden or internal options must be UNDOCUMENTED (set in {@link #documentationCategory()}).
132 * concatenated to form the full options value.
140 * If the option is actually an abbreviation for other options, this field will contain the
144 * <p>An expanded option overrides previously specified options of the same name, even if it is
154 * depending on what other options the parser knows about.
163 * Additional options that need to be implicitly added for this option.
165 * <p>Nothing guarantees that these options are not overridden by later or higher-priority values
166 * for the same options, so if this is truly a requirement, the user should check that the correct
167 * set of options is set.
191 * Indicates that this option is a wrapper for other options, and will be unwrapped when parsed.
196 * Option#converter()} attributes will not be processed. Wrapper options are implicitly repeatable
200 * <p>Wrapper options are provided only for transitioning flags which appear as values to other
201 * flags, to top-level flags. Wrapper options should not be used in Invocation Policy, as