@Version("1.2.1")
Package com.adobe.granite.ui.components.rendercondition
Provides API for Granite UI render conditions.
-
Interface Summary Interface Description RenderCondition The condition if the component should be rendered or not. -
Class Summary Class Description AbstractCompositeRenderCondition A condition that act as an aggregate using composite pattern.AndRenderCondition The condition that returnstrue
when all the sub conditions are returningtrue
;false
otherwise.NotRenderCondition The condition that returnstrue
when all the sub conditions are returningfalse
;true
otherwise.OrRenderCondition The condition that returnstrue
when any of the sub conditions is returningtrue
;false
otherwise.PrivilegeRenderCondition A condition that decides based onAccessControlManager.hasPrivileges(String, Privilege[])
.RenderConditionHelper A helper to getRenderCondition
of a resource.SimpleRenderCondition A condition that takes a simple boolean for the decision.