CategoryListener to be informed about
changes in this category or any of its children.Category with the given name and
return it.CategoryCategory instancesCategory hierarchies:
CategoriesBuilder<Type> b = Categories.createBuilder("Root");
b.add(elementForRoot);
b.get("FirstChild").add(someElementForFirstChild);
b.get("FirstChild").add(someOtherElementForFirstChild);
b.get("SecondChild").add(ElementForSecondChild);
b.get("SecondChild").get("GrandChild").add(lastElement);
Category<Type> root = b.get();
This class essentially wraps a MutableCategory and offers
convenience functions for the initial construction of the categories,
for example, by creating the child categories on demand.CategoryCategory.CategoryCategoryMutableCategory with the given nameCategoriesBuilder,
using the given name for the root category.Category objects.CategoryCategoryMutableCategory that is currently being builtCategory
and its children.Category from which this event originatednull
if there is no child with the given name.null
if there is no child with the given name.CategoryCategory.Category.CategoryListener from this categoryCategory with the given name.CategoryCategory.Category.Copyright © 2018. All rights reserved.