11
11
CALLER_SCRIPT_NAME=" bashTabCompletionDocletTestLaunch"
12
12
13
13
# A description of these variables is below in the main completion function (_masterCompletionFunction)
14
- CS_PREFIX_OPTIONS_ALL_LEGAL_ARGUMENTS=(--pre-help --pre-info --pre-inputFile TestExtraDocs TestArgumentContainer )
15
- CS_PREFIX_OPTIONS_NORMAL_COMPLETION_ARGUMENTS=(--pre-help --pre-info --pre-inputFile TestExtraDocs TestArgumentContainer )
16
- CS_PREFIX_OPTIONS_ALL_ARGUMENT_VALUE_TYPES=(" null" " null" " File" " null" " null " )
14
+ CS_PREFIX_OPTIONS_ALL_LEGAL_ARGUMENTS=(--pre-help --pre-info --pre-inputFile TestArgumentContainer )
15
+ CS_PREFIX_OPTIONS_NORMAL_COMPLETION_ARGUMENTS=(--pre-help --pre-info --pre-inputFile TestArgumentContainer )
16
+ CS_PREFIX_OPTIONS_ALL_ARGUMENT_VALUE_TYPES=(" null" " null" " File" " null" )
17
17
CS_PREFIX_OPTIONS_MUTUALLY_EXCLUSIVE_ARGS=(" --pre-help;pre-info,pre-inputFile" " --pre-info;pre-help,pre-inputFile" )
18
18
CS_PREFIX_OPTIONS_SYNONYMOUS_ARGS=(" --pre-help;-prh" " --pre-inputFile;-prif" )
19
- CS_PREFIX_OPTIONS_MIN_OCCURRENCES=(0 0 1 0 0 )
20
- CS_PREFIX_OPTIONS_MAX_OCCURRENCES=(1 1 1 1 1 )
19
+ CS_PREFIX_OPTIONS_MIN_OCCURRENCES=(0 0 1 0 )
20
+ CS_PREFIX_OPTIONS_MAX_OCCURRENCES=(1 1 1 1 )
21
21
22
22
CS_POSTFIX_OPTIONS_ALL_LEGAL_ARGUMENTS=(--post-help --post-info --post-inputFile)
23
23
CS_POSTFIX_OPTIONS_NORMAL_COMPLETION_ARGUMENTS=(--post-help --post-info --post-inputFile)
@@ -31,7 +31,7 @@ CS_POSTFIX_OPTIONS_MAX_OCCURRENCES=(1 1 1)
31
31
HAS_POSTFIX_OPTIONS=" true"
32
32
33
33
# All the tool names we are able to complete:
34
- ALL_TOOLS=(TestExtraDocs TestArgumentContainer )
34
+ ALL_TOOLS=(TestArgumentContainer )
35
35
36
36
# ###################################################################################################
37
37
@@ -422,20 +422,6 @@ _bashTabCompletionDocletTestLaunch_masterCompletionFunction()
422
422
# Set our reply as a list of the possible tool matches:
423
423
COMPREPLY=( $( compgen -W ' ${possibleToolMatches[@]}' -- $cur ) )
424
424
425
- elif [[ ${toolName} == " TestExtraDocs" ]] ; then
426
-
427
- # Set up the completion information for this tool:
428
- DEPENDENT_ARGUMENTS=()
429
- NORMAL_COMPLETION_ARGUMENTS=(--extraDocsArgument )
430
- MUTUALLY_EXCLUSIVE_ARGS=()
431
- SYNONYMOUS_ARGS=(" --extraDocsArgument;-extDocArg" )
432
- MIN_OCCURRENCES=(0 )
433
- MAX_OCCURRENCES=(2147483647 )
434
- ALL_LEGAL_ARGUMENTS=(--extraDocsArgument )
435
- ALL_ARGUMENT_VALUE_TYPES=(" String" )
436
-
437
- # Complete the arguments for this tool:
438
- _bashTabCompletionDocletTestLaunch_handleArgs
439
425
elif [[ ${toolName} == " TestArgumentContainer" ]] ; then
440
426
441
427
# Set up the completion information for this tool:
0 commit comments