vault-cli/src/main/java/org/apache/jackrabbit/vault/cli/CmdPropGet.java [70:84]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                .withDescription(getShortDescription())
                .withChildren(new GroupBuilder()
                        .withName("Options:")
                        .withOption(OPT_QUIET)
                        .withOption(optRecursive = new DefaultOptionBuilder()
                                .withShortName("R")
                                .withLongName("recursive")
                                .withDescription("descend recursively")
                                .create())
                        .withOption(argPropName = new ArgumentBuilder()
                                .withName("propname")
                                .withDescription("the property name")
                                .withMinimum(1)
                                .withMaximum(1)
                                .create())
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



vault-cli/src/main/java/org/apache/jackrabbit/vault/cli/CmdPropSet.java [79:93]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                .withDescription(getShortDescription())
                .withChildren(new GroupBuilder()
                        .withName("Options:")
                        .withOption(OPT_QUIET)
                        .withOption(optRecursive = new DefaultOptionBuilder()
                                .withShortName("R")
                                .withLongName("recursive")
                                .withDescription("descend recursively")
                                .create())
                        .withOption(argPropName = new ArgumentBuilder()
                                .withName("propname")
                                .withDescription("the property name")
                                .withMinimum(1)
                                .withMaximum(1)
                                .create())
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



