Home
last modified time | relevance | path

Searched refs:commandNames (Results 1 – 7 of 7) sorted by relevance

/external/jcommander/src/test/java/com/beust/jcommander/
DCmdTest.java13 @Parameters(commandNames = "--cmd-one")
17 @Parameters(commandNames = "--cmd-two")
DJCommanderTest.java435 private void verifyCommandOrdering(String[] commandNames, Object[] commands) { in verifyCommandOrdering() argument
440 jc.addCommand(commandNames[i], commands[i]); in verifyCommandOrdering()
448 Assert.assertEquals(it.next(), commandNames[i]); in verifyCommandOrdering() local
670 @Parameters(commandNames = { "--configure" })
/external/jcommander/src/test/java/com/beust/jcommander/command/
DNamedCommandAdd.java8 @Parameters(commandNames = "add", commandDescription = "Add file contents to the index")
DCommandHidden.java8 @Parameters(commandNames = "add", commandDescription = "Hidden command to add file contents to the …
/external/jcommander/src/main/java/com/beust/jcommander/
DParameters.java69 String[] commandNames() default {}; in commandNames() method
DJCommander.java1369 if (p != null && p.commandNames().length > 0) { in addCommand()
1370 for (String commandName : p.commandNames()) { in addCommand()
/external/jcommander/
DCHANGELOG54 Added: @Parameter(commandNames) so that command names can be specified with annotations