Home | History | Annotate | Download | only in options

Lines Matching refs:category

532    * intuitive short description for the options. Options of the same category (see {@link
533 * Option#category}) will be grouped together.
535 * @param categoryDescriptions a mapping from category names to category descriptions.
536 * Descriptions are optional; if omitted, a string based on the category name will be used.
555 String category = option.category();
556 if (!category.equals(prevCategory)
558 String description = categoryDescriptions.get(category);
560 description = "Options category '" + category + "'";
563 prevCategory = category;
580 * @param categoryDescriptions a mapping from category names to category
581 * descriptions. Options of the same category (see {@link
582 * Option#category}) will be grouped together, preceded by the description
583 * of the category.
598 String category = option.category();
599 if (!category.equals(prevCategory)
601 String description = categoryDescriptions.get(category);
603 description = "Options category '" + category + "'";
610 prevCategory = category;