use of com.haulmont.cuba.core.app.dynamicattributes.DynamicAttributesTools in project cuba by cuba-platform.
the class CategoryAttributeConfiguration method getDependentAttributes.
public Collection<CategoryAttribute> getDependentAttributes() {
if (dependentAttributes == null) {
DynamicAttributesTools dynamicAttributesTools = AppBeans.get(DynamicAttributesTools.NAME);
dependentAttributes = dynamicAttributesTools.getDependentCategoryAttributes(categoryAttribute);
}
return dependentAttributes;
}
Aggregations